Slide 13
Slide 13 text
13
Proprietary & Confidential
| GDG Android - April 2018
Code
new Text(
'Hello, $_name! How are you?',
textAlign: TextAlign.center,
style: new TextStyle(fontWeight: FontWeight.bold),
)
new AlertDialog(
title: new Text('Title'),
content: new SingleChildScrollView(
child: new ListBody(
children: [
new Text('some text.'),
],
),
),
actions: [
new FlatButton(
child: new Text('OK'),
onPressed: () {
Navigator.of(context).pop();
},
),
],
new MaterialApp(
home: new MyHomeScreen(),
)