Skip to content

Commit

Permalink
Merge pull request #107 from IamMuuo/registration
Browse files Browse the repository at this point in the history
Registration
  • Loading branch information
IamMuuo authored Dec 7, 2024
2 parents 2c5c046 + d0d4578 commit e37f051
Show file tree
Hide file tree
Showing 303 changed files with 4,512 additions and 18,323 deletions.
Binary file removed assets/images/bot_hello.png
Binary file not shown.
34 changes: 0 additions & 34 deletions assets/images/bot_hello.png.import

This file was deleted.

Binary file removed assets/images/bot_love.png
Binary file not shown.
34 changes: 0 additions & 34 deletions assets/images/bot_love.png.import

This file was deleted.

Binary file removed assets/images/bot_sad.png
Binary file not shown.
34 changes: 0 additions & 34 deletions assets/images/bot_sad.png.import

This file was deleted.

Binary file removed assets/images/bot_search.png
Binary file not shown.
34 changes: 0 additions & 34 deletions assets/images/bot_search.png.import

This file was deleted.

Binary file removed assets/images/bot_wave.png
Binary file not shown.
34 changes: 0 additions & 34 deletions assets/images/bot_wave.png.import

This file was deleted.

Binary file removed assets/images/cake.png
Binary file not shown.
Binary file removed assets/images/coin.png
Binary file not shown.
Binary file removed assets/images/congratulations_askMe.jpeg
Binary file not shown.
Binary file removed assets/images/female_student.png
Binary file not shown.
34 changes: 0 additions & 34 deletions assets/images/female_student.png.import

This file was deleted.

Binary file removed assets/images/gifts.png
Binary file not shown.
Binary file removed assets/images/girl_holding_phone.png
Binary file not shown.
34 changes: 0 additions & 34 deletions assets/images/girl_holding_phone.png.import

This file was deleted.

Binary file removed assets/images/girl_sitted.png
Binary file not shown.
34 changes: 0 additions & 34 deletions assets/images/girl_sitted.png.import

This file was deleted.

Binary file removed assets/images/grade.png
Binary file not shown.
Binary file removed assets/images/left_arrow.png
Binary file not shown.
Binary file removed assets/images/male_student.png
Binary file not shown.
34 changes: 0 additions & 34 deletions assets/images/male_student.png.import

This file was deleted.

Binary file removed assets/images/organize.png
Binary file not shown.
Binary file removed assets/images/present.png
Binary file not shown.
Binary file removed assets/images/present2.png
Binary file not shown.
Binary file removed assets/images/present3.png
Binary file not shown.
Binary file removed assets/images/right_arrow.png
Binary file not shown.
Binary file removed assets/images/schedule.png
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.
Diff not rendered.
Diff not rendered.
Diff not rendered.
Diff not rendered.
Diff not rendered.
Binary file removed assets/images/sketchbook-young-man-studying.png
Diff not rendered.
Diff not rendered.
Binary file removed assets/images/study.gif
Diff not rendered.
1 change: 1 addition & 0 deletions assets/images/studying.svg

Large diffs are not rendered by default.

Binary file removed assets/images/tasks_manager.png
Diff not rendered.
Binary file added assets/rive/bunny_login.riv
Binary file not shown.
23 changes: 23 additions & 0 deletions lib/app.dart
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,
),
),
);
}
}
Loading

0 comments on commit e37f051

Please sign in to comment.