Skip to content

Commit a890c4e

Browse files
committed
Section Three, Video Five: Creating UI of Simple Interest Calculater
1 parent 9bd7d59 commit a890c4e

File tree

1 file changed

+2
-3
lines changed

1 file changed

+2
-3
lines changed

lib/main.dart

Lines changed: 2 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -28,14 +28,14 @@ class _SIFormState extends State<SIForm> {
2828
Widget build(BuildContext context) {
2929

3030
return Scaffold(
31-
31+
// resizeToAvoidBottomPadding: false,
3232
appBar: AppBar(
3333
title: Text('Simple Interest Calculator'),
3434
),
3535

3636
body: Container(
3737
margin: EdgeInsets.all(_minimumPadding * 2),
38-
child: Column(
38+
child: ListView(
3939
children: <Widget>[
4040

4141
getImageAsset(),
@@ -145,5 +145,4 @@ class _SIFormState extends State<SIForm> {
145145

146146
return Container(child: image, margin: EdgeInsets.all(_minimumPadding * 10),);
147147
}
148-
149148
}

0 commit comments

Comments
 (0)