We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 9bd7d59 commit a890c4eCopy full SHA for a890c4e
lib/main.dart
@@ -28,14 +28,14 @@ class _SIFormState extends State<SIForm> {
28
Widget build(BuildContext context) {
29
30
return Scaffold(
31
-
+// resizeToAvoidBottomPadding: false,
32
appBar: AppBar(
33
title: Text('Simple Interest Calculator'),
34
),
35
36
body: Container(
37
margin: EdgeInsets.all(_minimumPadding * 2),
38
- child: Column(
+ child: ListView(
39
children: <Widget>[
40
41
getImageAsset(),
@@ -145,5 +145,4 @@ class _SIFormState extends State<SIForm> {
145
146
return Container(child: image, margin: EdgeInsets.all(_minimumPadding * 10),);
147
}
148
149
0 commit comments