fmassive/lib/best_page.dart

15 lines
284 B
Dart
Raw Permalink Normal View History

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