fmassive/lib/best_page.dart

15 lines
284 B
Dart
Raw Normal View History

2023-04-07 11:50:02 +12:00
import 'package:flutter/material.dart';
class BestPage extends StatelessWidget {
const BestPage({super.key});
@override
Widget build(BuildContext context) {
2023-04-11 11:41:10 +12:00
return const Scaffold(
body: Center(
2023-04-07 11:50:02 +12:00
child: Text('Welcome to the Best Page!'),
),
);
}
}