Skip to content

Commit

Permalink
initial commit for session
Browse files Browse the repository at this point in the history
  • Loading branch information
Uuttssaavv committed Aug 1, 2022
1 parent 51ac843 commit a52fc8d
Show file tree
Hide file tree
Showing 4 changed files with 39 additions and 7 deletions.
2 changes: 1 addition & 1 deletion android/app/src/main/AndroidManifest.xml
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
<manifest xmlns:android="http://schemas.android.com/apk/res/android"
package="com.example.flutter_project">
<application
android:label="Flutter equatable"
android:label="Flutter session"
android:name="${applicationName}"
android:icon="@mipmap/ic_launcher">
<activity
Expand Down
6 changes: 4 additions & 2 deletions lib/main.dart
Original file line number Diff line number Diff line change
Expand Up @@ -10,11 +10,13 @@ class MyApp extends StatelessWidget {
@override
Widget build(BuildContext context) {
return MaterialApp(
title: 'Flutter equatable',
title: 'Flutter session',
theme: ThemeData(
primarySwatch: Colors.blue,
),
home: const MyHomePage(title: 'Flutter Demo for home page'),
home: const MyHomePage(
title: 'Flutter Demo for managing session using dio',
),
);
}
}
Expand Down
34 changes: 31 additions & 3 deletions pubspec.lock
Original file line number Diff line number Diff line change
Expand Up @@ -8,6 +8,13 @@ packages:
url: "https://pub.dartlang.org"
source: hosted
version: "2.8.2"
bloc:
dependency: "direct main"
description:
name: bloc
url: "https://pub.dartlang.org"
source: hosted
version: "8.0.3"
boolean_selector:
dependency: transitive
description:
Expand Down Expand Up @@ -50,13 +57,13 @@ packages:
url: "https://pub.dartlang.org"
source: hosted
version: "1.0.5"
equatable:
dio:
dependency: "direct main"
description:
name: equatable
name: dio
url: "https://pub.dartlang.org"
source: hosted
version: "2.0.3"
version: "4.0.6"
fake_async:
dependency: transitive
description:
Expand All @@ -81,6 +88,20 @@ packages:
description: flutter
source: sdk
version: "0.0.0"
get_it:
dependency: "direct main"
description:
name: get_it
url: "https://pub.dartlang.org"
source: hosted
version: "7.2.0"
http_parser:
dependency: transitive
description:
name: http_parser
url: "https://pub.dartlang.org"
source: hosted
version: "4.0.1"
lints:
dependency: transitive
description:
Expand Down Expand Up @@ -163,6 +184,13 @@ packages:
url: "https://pub.dartlang.org"
source: hosted
version: "0.4.9"
typed_data:
dependency: transitive
description:
name: typed_data
url: "https://pub.dartlang.org"
source: hosted
version: "1.3.1"
vector_math:
dependency: transitive
description:
Expand Down
4 changes: 3 additions & 1 deletion pubspec.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -9,10 +9,12 @@ environment:
sdk: ">=2.17.6 <3.0.0"

dependencies:
bloc: ^8.0.3
cupertino_icons: ^1.0.2
equatable: ^2.0.3
dio: ^4.0.6
flutter:
sdk: flutter
get_it: ^7.2.0

dev_dependencies:
flutter_lints: ^2.0.0
Expand Down

0 comments on commit a52fc8d

Please sign in to comment.