1
0
Fork 0
mrtiboute/lib/widgets/pages/home.dart

11 lines
235 B
Dart
Raw Normal View History

2022-03-31 21:34:28 +02:00
import 'package:flutter/material.dart';
class HomePage extends StatelessWidget {
const HomePage({Key? key}) : super(key: key);
@override
Widget build(BuildContext context) {
return const Scaffold(body: Text('Test'));
}
}