Commit 5ebd693a authored by Indika NK's avatar Indika NK

button colors adjusted

padding adjusted
parent 422fd54b
...@@ -79,11 +79,15 @@ class _HomeScreenState extends State<HomeScreen> { ...@@ -79,11 +79,15 @@ class _HomeScreenState extends State<HomeScreen> {
mainAxisAlignment: MainAxisAlignment.center, mainAxisAlignment: MainAxisAlignment.center,
children: <Widget>[ children: <Widget>[
Container( Container(
child: Expanded(
flex: 2,
child: FlatButton(onPressed: () { child: FlatButton(onPressed: () {
print('i guider '); print('i guider ');
}, },
padding: EdgeInsets.all(50), // padding: EdgeInsets.all(60),
padding: EdgeInsets.fromLTRB(60,75,45,70),
color: Colors.white, color: Colors.white,
highlightColor: Colors.blue[200],
clipBehavior: Clip.none, clipBehavior: Clip.none,
child: Text( child: Text(
'I-guider', 'I-guider',
...@@ -96,11 +100,12 @@ class _HomeScreenState extends State<HomeScreen> { ...@@ -96,11 +100,12 @@ class _HomeScreenState extends State<HomeScreen> {
), ),
), ),
), ),
),
// height: size.height * .1, // height: size.height * .1,
decoration: BoxDecoration( decoration: BoxDecoration(
image: DecorationImage( // image: DecorationImage(
image: AssetImage( // image: AssetImage(
'')), // '')),
), ),
), ),
......
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