2024-07-01 11:08:06 +02:00
|
|
|
import "package:flutter/material.dart";
|
2024-07-04 09:44:27 +02:00
|
|
|
import "package:flutter_availability/flutter_availability.dart";
|
2024-07-01 11:08:06 +02:00
|
|
|
|
|
|
|
void main() {
|
2024-07-04 09:44:27 +02:00
|
|
|
runApp(const App());
|
2024-07-01 11:08:06 +02:00
|
|
|
}
|
|
|
|
|
2024-07-04 09:44:27 +02:00
|
|
|
class App extends StatelessWidget {
|
|
|
|
const App({super.key});
|
2024-07-01 11:08:06 +02:00
|
|
|
|
|
|
|
@override
|
2024-07-04 09:44:27 +02:00
|
|
|
Widget build(BuildContext context) => const MaterialApp(
|
|
|
|
home: Home(),
|
2024-07-01 11:08:06 +02:00
|
|
|
);
|
|
|
|
}
|
|
|
|
|
2024-07-04 09:44:27 +02:00
|
|
|
class Home extends StatelessWidget {
|
|
|
|
const Home({super.key});
|
2024-07-01 11:08:06 +02:00
|
|
|
|
|
|
|
@override
|
2024-07-04 09:44:27 +02:00
|
|
|
Widget build(BuildContext context) => availabilityNavigatorUserStory(
|
|
|
|
context,
|
2024-07-01 11:08:06 +02:00
|
|
|
);
|
|
|
|
}
|