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

button colors adjusted

padding adjusted
parent 422fd54b
...@@ -79,28 +79,33 @@ class _HomeScreenState extends State<HomeScreen> { ...@@ -79,28 +79,33 @@ class _HomeScreenState extends State<HomeScreen> {
mainAxisAlignment: MainAxisAlignment.center, mainAxisAlignment: MainAxisAlignment.center,
children: <Widget>[ children: <Widget>[
Container( Container(
child: FlatButton(onPressed: () { child: Expanded(
print('i guider '); flex: 2,
}, child: FlatButton(onPressed: () {
padding: EdgeInsets.all(50), print('i guider ');
color: Colors.white, },
clipBehavior: Clip.none, // padding: EdgeInsets.all(60),
child: Text( padding: EdgeInsets.fromLTRB(60,75,45,70),
'I-guider', color: Colors.white,
style: TextStyle( highlightColor: Colors.blue[200],
fontSize: 14, clipBehavior: Clip.none,
letterSpacing: 1, child: Text(
fontWeight: FontWeight.bold, 'I-guider',
// fontFamily: 'Roboto' style: TextStyle(
fontSize: 14,
letterSpacing: 1,
fontWeight: FontWeight.bold,
// fontFamily: 'Roboto'
),
), ),
), ),
), ),
// 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