Files
eh_downloader_flutter/lib/home.dart
2023-08-28 15:37:23 +08:00

17 lines
328 B
Dart

import 'package:flutter/material.dart';
class HomePage extends StatelessWidget {
const HomePage({Key? key}) : super(key: key);
static const String routeName = '/';
@override
Widget build(BuildContext context) {
return const Scaffold(
body: Center(
child: Text('Hello World!'),
),
);
}
}