Skip to content

Instantly share code, notes, and snippets.

@edward1986
Created February 27, 2021 12:52
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save edward1986/6e5219af083abe30187450fd5625d446 to your computer and use it in GitHub Desktop.
Save edward1986/6e5219af083abe30187450fd5625d446 to your computer and use it in GitHub Desktop.
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.red,
),
home: MyHomePage(title: 'Epic Page'),
);
}
}
class MyHomePage extends StatefulWidget {
MyHomePage({Key key, this.title}) : super(key: key);
final String title;
@override
_MyHomePageState createState() => _MyHomePageState();
}
class _MyHomePageState extends State<MyHomePage> {
@override
Widget build(BuildContext context) {
return Scaffold(
appBar: AppBar(
title: Text(widget.title),
),
body: Center(
child: Card(
child: Column(
mainAxisSize: MainAxisSize.min,
children: <Widget>[
ListTile(
leading: Icon(Icons.movie),
title: Text("Shazam"),
subtitle: Text("Shazam was called Captain Marvel first")
),
ButtonBarTheme(
data: ButtonBarThemeData(buttonTextTheme: ButtonTextTheme.accent),
child: ButtonBar(
children: <Widget>[
FlatButton(
child: Text("Watch Movie"),
onPressed: () {},
),
FlatButton(
child: Text("Watch Trailer"),
onPressed: () {},
),
],
)
)
],
),
)
)
);
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment