Skip to content

Instantly share code, notes, and snippets.

@LiewJunTung
Created December 13, 2019 22:43
Show Gist options
  • Save LiewJunTung/42cdd3db454cf13dd11353b4d1dd2c81 to your computer and use it in GitHub Desktop.
Save LiewJunTung/42cdd3db454cf13dd11353b4d1dd2c81 to your computer and use it in GitHub Desktop.
import 'package:flutter/material.dart';
final Color darkBlue = Color.fromARGB(255, 18, 32, 47);
void main() {
runApp(MyApp());
}
class MyApp extends StatelessWidget {
@override
Widget build(BuildContext context) {
return MaterialApp(
theme: ThemeData.dark().copyWith(scaffoldBackgroundColor: darkBlue),
debugShowCheckedModeBanner: false,
home: Scaffold(
body: Center(
child: MyWidget(),
),
),
);
}
}
class MyWidget extends StatelessWidget {
bool isAndroid = true;
String title = "Flutter Interact";
@override
Widget build(BuildContext context) {
return Row(
children: [
IconButton(icon: Icon(Icons.menu)),
Expanded(child: Text(title)),
if (isAndroid)
RaisedButton(child: Text("Search"))
else
IconButton(icon: Icon(Icons.search))
],
);
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment