File tree Expand file tree Collapse file tree 7 files changed +23
-22
lines changed Expand file tree Collapse file tree 7 files changed +23
-22
lines changed Original file line number Diff line number Diff line change @@ -10,4 +10,5 @@ GeneratedPluginRegistrant.java
10
10
# See https://flutter.dev/docs/deployment/android#reference-the-keystore-from-the-app
11
11
key.properties
12
12
** /* .keystore
13
- ** /* .jks
13
+ ** /* .jks
14
+ ** /google-services.json
Original file line number Diff line number Diff line change @@ -116,6 +116,6 @@ flutter {
116
116
117
117
dependencies {
118
118
implementation " org.jetbrains.kotlin:kotlin-stdlib-jdk7:$kotlin_version "
119
- implementation platform(' com.google.firebase:firebase-bom:28.4.0 ' )
119
+ implementation platform(' com.google.firebase:firebase-bom:28.4.2 ' )
120
120
implementation ' com.google.firebase:firebase-analytics-ktx'
121
121
}
Original file line number Diff line number Diff line change 1
1
buildscript {
2
- ext. kotlin_version = ' 1.3.50 '
2
+ ext. kotlin_version = ' 1.5.0 '
3
3
repositories {
4
4
google()
5
5
mavenCentral()
Original file line number Diff line number Diff line change @@ -32,7 +32,7 @@ class AppEnvironmentProd extends AppEnvironment {
32
32
class AppEnvironmentDev extends AppEnvironment {
33
33
AppEnvironmentDev ()
34
34
: super (
35
- appVersion: 'TODO v2.0-dev ' ,
35
+ appVersion: 'TODO v2.0-beta ' ,
36
36
ussdCodesHashRemote:
37
37
'https://todo-devs.github.io/todo-json/hash.json' ,
38
38
ussdCodesRemote: 'https://todo-devs.github.io/todo-json/config.json' ,
Original file line number Diff line number Diff line change 1
1
import 'package:flutter/material.dart' ;
2
2
import 'package:todo/app/app.dart' ;
3
- import 'package:todo/nauta/nauta.dart' ;
3
+ // import 'package:todo/nauta/nauta.dart';
4
4
import 'package:todo/settings/settings.dart' ;
5
5
6
6
class AppDrawer extends StatelessWidget {
@@ -45,13 +45,13 @@ class AppDrawer extends StatelessWidget {
45
45
),
46
46
),
47
47
),
48
- AppDrawerTile (
49
- title: l10n.accounts,
50
- icon: Icons .account_circle_outlined,
51
- onTap: () {
52
- AccountsPage .open (context);
53
- },
54
- ),
48
+ // AppDrawerTile(
49
+ // title: l10n.accounts,
50
+ // icon: Icons.account_circle_outlined,
51
+ // onTap: () {
52
+ // AccountsPage.open(context);
53
+ // },
54
+ // ),
55
55
AppDrawerTile (
56
56
title: l10n.settings,
57
57
icon: Icons .settings_outlined,
Original file line number Diff line number Diff line change @@ -33,14 +33,14 @@ class AppTabBar extends StatelessWidget {
33
33
size: 38 ,
34
34
),
35
35
),
36
- SizedBox (
37
- height: 64 ,
38
- width: 68 ,
39
- child: Icon (
40
- Icons .wifi,
41
- size: 38 ,
42
- ),
43
- ),
36
+ // SizedBox(
37
+ // height: 64,
38
+ // width: 68,
39
+ // child: Icon(
40
+ // Icons.wifi,
41
+ // size: 38,
42
+ // ),
43
+ // ),
44
44
],
45
45
);
46
46
}
Original file line number Diff line number Diff line change @@ -11,7 +11,7 @@ class HomeView extends StatelessWidget {
11
11
final l10n = context.l10n;
12
12
13
13
return DefaultTabController (
14
- length: 3 ,
14
+ length: 2 ,
15
15
child: Scaffold (
16
16
appBar: AppBar (
17
17
title: AppBarTitle (l10n.appName),
@@ -71,7 +71,7 @@ class HomeView extends StatelessWidget {
71
71
error: (error) => Center (child: Text (error)),
72
72
),
73
73
),
74
- const Center (child: Text ('WIFI' )),
74
+ // const Center(child: Text('WIFI')),
75
75
],
76
76
),
77
77
),
You can’t perform that action at this time.
0 commit comments