Skip to content

Instantly share code, notes, and snippets.

@collinjackson
Created February 21, 2018 07:33
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 collinjackson/28e4f38653ab3749806e7cde54a1e76c to your computer and use it in GitHub Desktop.
Save collinjackson/28e4f38653ab3749806e7cde54a1e76c to your computer and use it in GitHub Desktop.
import 'package:flutter/material.dart';
void main() => runApp(new MyApp());
class MyApp extends StatelessWidget {
@override
Widget build(BuildContext context) {
return new MaterialApp(
title: 'Flutter Demo',
theme: new ThemeData(
primarySwatch: Colors.blue,
),
home: new MyHomePage(title: 'Flutter Demo Home Page'),
);
}
}
class MyHomePage extends StatefulWidget {
MyHomePage({Key key, this.title}) : super(key: key);
final String title;
@override
_MyHomePageState createState() => new _MyHomePageState();
}
class _MyHomePageState extends State<MyHomePage> {
int _counter = 0;
void _incrementCounter() {
setState(() {
_counter++;
});
}
@override
Widget build(BuildContext context) {
return new Scaffold(
appBar: new AppBar(
title: new Text(widget.title),
),
body: new Center(
child: new Material(
color: _counter % 2 == 0 ? Colors.orange : Colors.blue,
elevation: 4.0,
shape: new RoundedRectangleBorder(
borderRadius: new BorderRadius.circular(_counter % 2 == 0 ? 16.0 : 0.0),
),
child: new Padding(
padding: new EdgeInsets.all(16.0),
child: new Text(
'You have pushed the button $_counter times.',
),
),
),
),
floatingActionButton: new FloatingActionButton(
onPressed: _incrementCounter,
tooltip: 'Increment',
child: new Icon(Icons.add),
),
);
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment