fmassive/lib/plans_page.dart

18 lines
354 B
Dart
Raw Normal View History

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