mirror of
https://github.com/lifegpc/eh_downloader_flutter.git
synced 2026-06-06 05:49:03 +08:00
17 lines
328 B
Dart
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!'),
|
|
),
|
|
);
|
|
}
|
|
}
|