diff --git a/flutter_app_test/images/avatar.png b/flutter_app_test/images/avatar.png index 6b6d162..b8f5e2c 100644 Binary files a/flutter_app_test/images/avatar.png and b/flutter_app_test/images/avatar.png differ diff --git a/flutter_app_test/images/avatar.png.default b/flutter_app_test/images/avatar.png.default deleted file mode 100644 index b8f5e2c..0000000 Binary files a/flutter_app_test/images/avatar.png.default and /dev/null differ diff --git a/flutter_app_test/lib/main.dart b/flutter_app_test/lib/main.dart index a15a595..7ecfb59 100644 --- a/flutter_app_test/lib/main.dart +++ b/flutter_app_test/lib/main.dart @@ -53,7 +53,11 @@ class _MyHomePageState extends State { '$_counter', style: Theme.of(context).textTheme.headline4, ), - Text('RELEASE'), + // #[release] + // Text('RELEASE'), + // #[[]] + Text('DEBUG'), + // #[[]] Image.asset('images/avatar.png'), ], ), diff --git a/flutter_app_test/lib/main.dart.bak b/flutter_app_test/lib/main.dart.bak deleted file mode 100644 index 7ecfb59..0000000 --- a/flutter_app_test/lib/main.dart.bak +++ /dev/null @@ -1,72 +0,0 @@ -import 'package:flutter/material.dart'; - -void main() { - runApp(MyApp()); -} - -class MyApp extends StatelessWidget { - @override - Widget build(BuildContext context) { - return MaterialApp( - title: 'Flutter Demo', - theme: ThemeData( - primarySwatch: Colors.blue, - visualDensity: VisualDensity.adaptivePlatformDensity, - ), - home: MyHomePage(title: 'Flutter Demo Home Page'), - ); - } -} - -class MyHomePage extends StatefulWidget { - MyHomePage({Key key, this.title}) : super(key: key); - - final String title; - - @override - _MyHomePageState createState() => _MyHomePageState(); -} - -class _MyHomePageState extends State { - int _counter = 0; - - void _incrementCounter() { - setState(() { - _counter++; - }); - } - - @override - Widget build(BuildContext context) { - return Scaffold( - appBar: AppBar( - title: Text(widget.title), - ), - body: Center( - child: Column( - mainAxisAlignment: MainAxisAlignment.center, - children: [ - Text( - 'You have pushed the button this many times:', - ), - Text( - '$_counter', - style: Theme.of(context).textTheme.headline4, - ), - // #[release] - // Text('RELEASE'), - // #[[]] - Text('DEBUG'), - // #[[]] - Image.asset('images/avatar.png'), - ], - ), - ), - floatingActionButton: FloatingActionButton( - onPressed: _incrementCounter, - tooltip: 'Increment', - child: Icon(Icons.add), - ), - ); - } -}