diff --git a/lib/main.dart b/lib/main.dart index 19776f7..ba8d2af 100644 --- a/lib/main.dart +++ b/lib/main.dart @@ -19,9 +19,14 @@ class TheApp extends StatelessWidget { ), body: Column( children: [ -Icon(Icons.scale), Text("Body Mass"), // I would like icon to be in the same row as text; ai! -Text("Fat Pct"), -Text("Daily Caloric Norm"), + Row( + children: [ + Icon(Icons.scale), + Text("Body Mass"), + ], + ), + Text("Fat Pct"), + Text("Daily Caloric Norm"), ], ), )