Skip to content

Commit

Permalink
feat: event hub screen
Browse files Browse the repository at this point in the history
  • Loading branch information
AhsanRns committed May 7, 2024
1 parent 579dbfe commit 0e3836e
Show file tree
Hide file tree
Showing 2 changed files with 17 additions and 1 deletion.
3 changes: 2 additions & 1 deletion evently/lib/main.dart
Original file line number Diff line number Diff line change
@@ -1,5 +1,6 @@
import 'dart:ui';
import 'package:easy_localization/easy_localization.dart';
import 'package:evently/screens/event_hub/event_hub_screen.dart';
import 'package:evently/screens/splash_screen.dart';
import 'package:evently/utils/constants.dart';
import 'package:evently/utils/evently_app_theme.dart';
Expand Down Expand Up @@ -58,7 +59,7 @@ class MyApp extends StatelessWidget {
initialRoute: '/',
routes: {
'/': (context) => const SplashScreen(),
RouteUtil.kRouteEventHub: (context) => const Placeholder(),
RouteUtil.kRouteEventHub: (context) => const EventHubScreen(),
},
),
);
Expand Down
15 changes: 15 additions & 0 deletions evently/lib/screens/event_hub/event_hub_screen.dart
Original file line number Diff line number Diff line change
@@ -0,0 +1,15 @@
import 'package:flutter/material.dart';

class EventHubScreen extends StatefulWidget {
const EventHubScreen({super.key});

@override
State<EventHubScreen> createState() => _EventHubScreenState();
}

class _EventHubScreenState extends State<EventHubScreen> {
@override
Widget build(BuildContext context) {
return const Placeholder();
}
}

0 comments on commit 0e3836e

Please sign in to comment.