projects
/
lmno.games
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
| inline |
side by side
(parent:
26a7971
)
Add some space in between TextFields for aesthetics
author
Kevin Worth
<kworth082@gmail.com>
Mon, 27 Apr 2020 12:47:01 +0000
(08:47 -0400)
committer
Kevin Worth
<kworth082@gmail.com>
Mon, 27 Apr 2020 12:47:01 +0000
(08:47 -0400)
flutterfamilies/lib/main.dart
patch
|
blob
|
history
diff --git
a/flutterfamilies/lib/main.dart
b/flutterfamilies/lib/main.dart
index 44855ed0da655716f201f0c0844daa9743ee6f71..616542220e05b986fe1938eb5ff171ecb7f5ed6b 100644
(file)
--- a/
flutterfamilies/lib/main.dart
+++ b/
flutterfamilies/lib/main.dart
@@
-98,6
+98,7
@@
class _MyHomePageState extends State<MyHomePage> {
mainAxisAlignment: MainAxisAlignment.center,
crossAxisAlignment: CrossAxisAlignment.start,
children: <Widget>[
+ Spacer(flex: 10),
Text(
'Name:',
style: Theme.of(context).textTheme.headline4,
@@
-107,6
+108,7
@@
class _MyHomePageState extends State<MyHomePage> {
hintText: 'Enter your (real) name',
),
),
+ Spacer(),
Text(
'Character:',
style: Theme.of(context).textTheme.headline4,
@@
-116,6
+118,7
@@
class _MyHomePageState extends State<MyHomePage> {
hintText: 'Enter your family/empire name',
),
),
+ Spacer(flex: 10),
],
),
),