File tree Expand file tree Collapse file tree 9 files changed +21
-123
lines changed Expand file tree Collapse file tree 9 files changed +21
-123
lines changed Original file line number Diff line number Diff line change @@ -18,21 +18,6 @@ migration:
18
18
- platform: android
19
19
create_revision: 41456452f29d64e8deb623a3c927524bcf9f111b
20
20
base_revision: 41456452f29d64e8deb623a3c927524bcf9f111b
21
- - platform: ios
22
- create_revision: 41456452f29d64e8deb623a3c927524bcf9f111b
23
- base_revision: 41456452f29d64e8deb623a3c927524bcf9f111b
24
- - platform: linux
25
- create_revision: 41456452f29d64e8deb623a3c927524bcf9f111b
26
- base_revision: 41456452f29d64e8deb623a3c927524bcf9f111b
27
- - platform: macos
28
- create_revision: 41456452f29d64e8deb623a3c927524bcf9f111b
29
- base_revision: 41456452f29d64e8deb623a3c927524bcf9f111b
30
- - platform: web
31
- create_revision: 41456452f29d64e8deb623a3c927524bcf9f111b
32
- base_revision: 41456452f29d64e8deb623a3c927524bcf9f111b
33
- - platform: windows
34
- create_revision: 41456452f29d64e8deb623a3c927524bcf9f111b
35
- base_revision: 41456452f29d64e8deb623a3c927524bcf9f111b
36
21
37
22
# User provided section
38
23
Original file line number Diff line number Diff line change @@ -24,8 +24,8 @@ if (flutterVersionName == null) {
24
24
25
25
android {
26
26
namespace " com.example.dbu_gym"
27
- compileSdkVersion flutter . compileSdkVersion
28
- ndkVersion flutter . ndkVersion
27
+ compileSdkVersion 34
28
+ ndkVersion " 25.1.8937393 "
29
29
30
30
compileOptions {
31
31
sourceCompatibility JavaVersion . VERSION_1_8
Original file line number Diff line number Diff line change 1
1
<manifest xmlns : android =" http://schemas.android.com/apk/res/android" >
2
+ <uses-permission android : name =" android.permission.INTERNET" />
3
+ <!-- Provide required visibility configuration for API level 30 and above -->
4
+ <queries >
5
+ <!-- If your app checks for SMS support -->
6
+ <intent >
7
+ <action android : name =" android.intent.action.VIEW" />
8
+ <data android : scheme =" sms" />
9
+ </intent >
10
+ <!-- If your app checks for call support -->
11
+ <intent >
12
+ <action android : name =" android.intent.action.VIEW" />
13
+ <data android : scheme =" tel" />
14
+ </intent >
15
+ <!-- If your application checks for inAppBrowserView launch mode support -->
16
+ <intent >
17
+ <action android : name =" android.support.customtabs.action.CustomTabsService" />
18
+ </intent >
19
+ </queries >
2
20
<application
3
21
android : label =" dbu_gym"
4
22
android : name =" ${applicationName}"
Original file line number Diff line number Diff line change @@ -43,7 +43,7 @@ void main(List<String> args) async {
43
43
ChangeNotifierProvider (create: (context) => ExerciseProvider ()),
44
44
ChangeNotifierProvider (
45
45
create: (context) => ThemeProvider (prefs: prefs)),
46
- ChangeNotifierProvider (create: (context) => BMIProvider ())
46
+ ChangeNotifierProvider (create: (context) => BMIProvider ()),
47
47
],
48
48
child: Builder (builder: (context) {
49
49
// get the current selected theme and update the theme based on user selection
Original file line number Diff line number Diff line change 1
- import "package:dbu_gym/views/pages/chat_page.dart" ;
2
1
import "package:dbu_gym/views/pages/contact_developer_page.dart" ;
3
2
import "package:dbu_gym/views/pages/exercise_details_page.dart" ;
4
3
import "package:dbu_gym/views/pages/exxercise_category_page.dart" ;
@@ -71,11 +70,6 @@ class AppRouter {
71
70
name: "contact-dev" ,
72
71
builder: (context, state) => ContactDeveloperPage (),
73
72
),
74
- GoRoute (
75
- path: "/chat" ,
76
- name: "chat" ,
77
- builder: (context, state) => ChatPage (),
78
- ),
79
73
],
80
74
errorBuilder: (context, state) => PageNotFound (),
81
75
);
Load Diff This file was deleted.
Original file line number Diff line number Diff line change @@ -93,15 +93,6 @@ class HomePage extends StatelessWidget {
93
93
mainScreen: DefaultTabController (
94
94
length: 2 ,
95
95
child: Scaffold (
96
- floatingActionButton: FloatingActionButton (
97
- child: Icon (Icons .chat_rounded),
98
- shape: CircleBorder (),
99
- backgroundColor: Theme .of (context).colorScheme.primary,
100
- foregroundColor: Colors .white,
101
- onPressed: () {
102
- GoRouter .of (context).pushNamed ("chat" );
103
- },
104
- ),
105
96
body: SafeArea (
106
97
child: Column (
107
98
children: [
Original file line number Diff line number Diff line change @@ -389,14 +389,6 @@ packages:
389
389
url: "https://pub.dev"
390
390
source: hosted
391
391
version: "13.2.0"
392
- google_generative_ai:
393
- dependency: "direct main"
394
- description:
395
- name: google_generative_ai
396
- sha256: b2d3f7277a85e3e6be4c4392c59e73ea211b5b6c8bb21c24c71fd411a2d1822e
397
- url: "https://pub.dev"
398
- source: hosted
399
- version: "0.2.2"
400
392
graphs:
401
393
dependency: transitive
402
394
description:
Original file line number Diff line number Diff line change @@ -58,7 +58,6 @@ dependencies:
58
58
awesome_snackbar_content : ^0.1.3
59
59
awesome_dialog : ^3.2.0
60
60
url_launcher : ^6.2.5
61
- google_generative_ai : ^0.2.2
62
61
dev_dependencies :
63
62
flutter_test :
64
63
sdk : flutter
You can’t perform that action at this time.
0 commit comments