Solian/lib/screens/account.dart

13 lines
248 B
Dart
Raw Normal View History

2024-05-18 10:17:16 +00:00
import 'package:flutter/material.dart';
class AccountScreen extends StatelessWidget {
const AccountScreen({super.key});
@override
Widget build(BuildContext context) {
return const Center(
child: Text("Woah account"),
);
}
}