-
Notifications
You must be signed in to change notification settings - Fork 14
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 #107 from IamMuuo/registration
Registration
- Loading branch information
Showing
303 changed files
with
4,512 additions
and
18,323 deletions.
There are no files selected for viewing
Binary file not shown.
This file was deleted.
Oops, something went wrong.
Binary file not shown.
This file was deleted.
Oops, something went wrong.
Binary file not shown.
This file was deleted.
Oops, something went wrong.
Binary file not shown.
This file was deleted.
Oops, something went wrong.
Binary file not shown.
This file was deleted.
Oops, something went wrong.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
This file was deleted.
Oops, something went wrong.
Binary file not shown.
Binary file not shown.
This file was deleted.
Oops, something went wrong.
Binary file not shown.
This file was deleted.
Oops, something went wrong.
Binary file not shown.
Binary file not shown.
Binary file not shown.
This file was deleted.
Oops, something went wrong.
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.
Diff not rendered.
Diff not rendered.
Binary file removed
BIN
-206 KB
assets/images/sketchbook-woman-taking-pictures-of-packaged-goods.png
Diff not rendered.
Diff not rendered.
Binary file removed
BIN
-85.7 KB
assets/images/sketchbook-young-businesswoman-giving-a-presentation-1.png
Diff not rendered.
Binary file removed
BIN
-187 KB
...s/images/sketchbook-young-man-and-his-dog-are-having-a-picnic-in-the-park-1.png
Diff not rendered.
Diff not rendered.
Diff not rendered.
Diff not rendered.
Diff not rendered.
Large diffs are not rendered by default.
Oops, something went wrong.
Diff not rendered.
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:academia/utils/router/router.dart'; | ||
import 'package:flutter/material.dart'; | ||
import 'package:dynamic_color/dynamic_color.dart'; | ||
import 'package:google_fonts/google_fonts.dart'; | ||
|
||
class Academia extends StatelessWidget { | ||
const Academia({super.key}); | ||
|
||
@override | ||
Widget build(BuildContext context) { | ||
return DynamicColorBuilder( | ||
builder: (lightscheme, darkscheme) => MaterialApp.router( | ||
title: "Academia", | ||
routerConfig: AcademiaRouter.router, | ||
theme: ThemeData( | ||
colorScheme: lightscheme, | ||
useMaterial3: true, | ||
fontFamily: GoogleFonts.inter().fontFamily, | ||
), | ||
), | ||
); | ||
} | ||
} |
Oops, something went wrong.