Commit 422fd54b authored by Indika NK's avatar Indika NK

added a main button to i guider

parent ec768d60
...@@ -79,13 +79,31 @@ class _HomeScreenState extends State<HomeScreen> { ...@@ -79,13 +79,31 @@ class _HomeScreenState extends State<HomeScreen> {
mainAxisAlignment: MainAxisAlignment.center, mainAxisAlignment: MainAxisAlignment.center,
children: <Widget>[ children: <Widget>[
Container( Container(
height: size.height * .1, child: FlatButton(onPressed: () {
print('i guider ');
},
padding: EdgeInsets.all(50),
color: Colors.white,
clipBehavior: Clip.none,
child: Text(
'I-guider',
style: TextStyle(
fontSize: 14,
letterSpacing: 1,
fontWeight: FontWeight.bold,
// fontFamily: 'Roboto'
),
),
),
// height: size.height * .1,
decoration: BoxDecoration( decoration: BoxDecoration(
image: DecorationImage( image: DecorationImage(
image: AssetImage( image: AssetImage(
'lib/assets/images/mino.jpg')), '')),
)), ),
Text('Personal Data') ),
], ],
)), )),
Card( Card(
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment