From 95af0d3a387ae0c34eec317fe368db2dc77026c7 Mon Sep 17 00:00:00 2001 From: Grail Finder Date: Sat, 19 Apr 2025 13:02:28 +0300 Subject: [PATCH] feat: update body layout with new widgets and text --- lib/main.dart | 10 +++++++--- 1 file changed, 7 insertions(+), 3 deletions(-) diff --git a/lib/main.dart b/lib/main.dart index 6f80f9f..19776f7 100644 --- a/lib/main.dart +++ b/lib/main.dart @@ -10,15 +10,19 @@ class TheApp extends StatelessWidget { @override Widget build(BuildContext context) { return MaterialApp( - // theme: , + // theme:, home: Scaffold( appBar: AppBar( backgroundColor: Colors.deepPurple, title: const Text("Tamagochi 2.0"), centerTitle: true, ), - body: Container( - child: const Text("this is a body"), + 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"), + ], ), ) );