mirror of
https://github.com/bettercoding-dev/flutter-jwt-auth.git
synced 2025-08-06 17:28:17 +08:00
20 lines
452 B
Dart
20 lines
452 B
Dart
import 'package:flutter/material.dart';
|
|
import 'package:flutter_jwt_auth/time/ui/time_page.dart';
|
|
import 'package:flutter_riverpod/flutter_riverpod.dart';
|
|
|
|
void main() {
|
|
runApp(const ProviderScope(child: MainApp()));
|
|
}
|
|
|
|
class MainApp extends StatelessWidget {
|
|
const MainApp({super.key});
|
|
|
|
@override
|
|
Widget build(BuildContext context) {
|
|
return const MaterialApp(
|
|
debugShowCheckedModeBanner: false,
|
|
home: TimePage(),
|
|
);
|
|
}
|
|
}
|