37 lines
778 B
Dart
37 lines
778 B
Dart
import 'package:flutter/material.dart';
|
|
|
|
void main(){
|
|
runApp(TheApp());
|
|
}
|
|
|
|
class TheApp extends StatelessWidget {
|
|
const TheApp({super.key});
|
|
|
|
@override
|
|
Widget build(BuildContext context) {
|
|
return MaterialApp(
|
|
// theme:,
|
|
home: Scaffold(
|
|
appBar: AppBar(
|
|
backgroundColor: Colors.deepPurple,
|
|
title: const Text("Tamagochi 2.0"),
|
|
centerTitle: true,
|
|
),
|
|
body: Column(
|
|
children: [
|
|
Row(
|
|
mainAxisAlignment: MainAxisAlignment.center,
|
|
children: [
|
|
Icon(Icons.scale),
|
|
Text("Body Mass"),
|
|
],
|
|
),
|
|
Text("Fat Pct"),
|
|
Text("Daily Caloric Norm"),
|
|
],
|
|
),
|
|
)
|
|
);
|
|
}
|
|
}
|