fmassive/lib/best_page.dart

18 lines
350 B
Dart

import 'package:flutter/material.dart';
class BestPage extends StatelessWidget {
const BestPage({super.key});
@override
Widget build(BuildContext context) {
return Scaffold(
appBar: AppBar(
title: const Text('Best'),
),
body: const Center(
child: Text('Welcome to the Best Page!'),
),
);
}
}