Files
fluchi/lib/main.dart
Grail Finder (aider) 9325cd49f8 feat: center app bar title
2025-04-19 11:48:53 +03:00

27 lines
521 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: Container(
child: const Text("this is a body"),
),
)
);
}
}