Markdown. Privacy Policies. Injection dep updated

This commit is contained in:
vjrj 2018-07-12 09:57:31 +02:00
parent 8301e6a40e
commit f0ab472b3a
21 changed files with 487 additions and 25 deletions

View file

@ -13,14 +13,28 @@ class Sandbox extends StatelessWidget {
Widget build(BuildContext context) {
//showDialog(context: context, child: builder(context));
return Scaffold(
appBar: new AppBar(
title: new TextField(
autofocus: true,
controller: new TextEditingController(text: "kk"),
decoration: new InputDecoration(),
onSubmitted: (todoText) {},
)),
body: new Text("Sandbox"),
);
appBar: new AppBar(
title: new TextField(
autofocus: true,
controller: new TextEditingController(text: "kk"),
decoration: new InputDecoration(),
onSubmitted: (todoText) {},
)),
body: new RaisedButton(
child: new Text('Press'),
onPressed: () {
showDialog(
context: context,
builder: (context) {
return new SimpleDialog(
title: new Text('title'),
children: <Widget>[
new Padding(
padding: const EdgeInsets.only(left: 16.0),
child: new Text('hhh'),
),
]);
});
}));
}
}