generated from GDGVIT/template
-
Notifications
You must be signed in to change notification settings - Fork 2
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #5 from JothishKamal/dev
refactor: reset project for revamp
- Loading branch information
Showing
48 changed files
with
252 additions
and
298 deletions.
There are no files selected for viewing
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,23 @@ | ||
import 'package:flutter/material.dart'; | ||
|
||
import 'package:spotify_collab_app/app/router/router.dart'; | ||
import 'package:spotify_collab_app/app/theme/theme.dart'; | ||
|
||
class CollabifyApp extends StatelessWidget { | ||
const CollabifyApp({super.key}); | ||
|
||
@override | ||
Widget build(BuildContext context) { | ||
return MaterialApp.router( | ||
title: 'Kalculate', | ||
theme: darkTheme, | ||
themeMode: ThemeMode.dark, | ||
debugShowCheckedModeBanner: false, | ||
routerConfig: router, | ||
); | ||
} | ||
} | ||
|
||
void main() { | ||
runApp(const CollabifyApp()); | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,13 @@ | ||
import 'package:flutter/material.dart'; | ||
import 'package:go_router/go_router.dart'; | ||
import 'package:spotify_collab_app/view/screens/u_home_screen.dart'; | ||
|
||
final router = GoRouter( | ||
initialLocation: '/', | ||
routes: <GoRoute>[ | ||
GoRoute( | ||
path: '/', | ||
pageBuilder: (context, state) => const MaterialPage(child: HomeScreen()), | ||
), | ||
], | ||
); |
File renamed without changes.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,22 +1,6 @@ | ||
import 'package:spotify_collab_app/app/app.dart'; | ||
import 'package:flutter/material.dart'; | ||
import 'package:spotify_collab_app/screens/home_screen.dart'; | ||
import 'package:spotify_collab_app/screens/login_screen.dart'; | ||
import 'theme/theme.dart'; | ||
|
||
void main() { | ||
runApp(const MyApp()); | ||
} | ||
|
||
class MyApp extends StatelessWidget { | ||
const MyApp({super.key}); | ||
|
||
@override | ||
Widget build(BuildContext context) { | ||
return MaterialApp( | ||
debugShowCheckedModeBanner: false, | ||
title: 'Spotify Collab', | ||
theme: darkTheme, | ||
home: const HomeScreen(), | ||
); | ||
} | ||
runApp(const CollabifyApp()); | ||
} |
This file was deleted.
Oops, something went wrong.
Oops, something went wrong.