Skip to content
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
6 changes: 3 additions & 3 deletions app.dart
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@ class MyApp extends StatelessWidget {
@override
Widget build(BuildContext context) {
return MaterialApp(
title: 'flutter app',
title: 'FLUTTER APP',
home: MyHomePage(),
);
}
Expand All @@ -17,7 +17,7 @@ class MyHomePage extends StatelessWidget{
Widget build(BuildContext context){
return Scaffold(
appBar : AppBar (
title: Text('flutter app'),
title: Text('FLUTTER APP'),
),
body: Column(
children: <Widget>[
Expand All @@ -27,7 +27,7 @@ class MyHomePage extends StatelessWidget{
Card(
color: Colors.lightBlue,
child: Text('chart!'),
elevation:5,
elevation:6,
),
),

Expand Down