Initial commit
This commit is contained in:
commit
c4438365ab
78 changed files with 1900 additions and 0 deletions
24
lib/sandbox.dart
Normal file
24
lib/sandbox.dart
Normal file
|
|
@ -0,0 +1,24 @@
|
|||
import 'package:flutter/material.dart';
|
||||
import 'package:comunes_flutter/comunes_flutter.dart';
|
||||
|
||||
/*
|
||||
Useful for debug
|
||||
import 'package:fluttery/framing.dart';
|
||||
new RandomColorBlock( child:
|
||||
*/
|
||||
|
||||
class Sandbox extends StatelessWidget {
|
||||
static const String routeName = '/sandbox';
|
||||
|
||||
@override
|
||||
Widget build(BuildContext context) {
|
||||
return Scaffold(
|
||||
body: new CenteredColumn(
|
||||
children: <Widget>[
|
||||
new IconButton(
|
||||
icon: new Icon(Icons.favorite), onPressed: () => {}), // l
|
||||
],
|
||||
),
|
||||
);
|
||||
}
|
||||
}
|
||||
Loading…
Add table
Add a link
Reference in a new issue