Skip to content

Commit 3617f85

Browse files
author
Luis Ciber
committed
Beta 1
1 parent 0212cd4 commit 3617f85

File tree

7 files changed

+23
-22
lines changed

7 files changed

+23
-22
lines changed

android/.gitignore

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -10,4 +10,5 @@ GeneratedPluginRegistrant.java
1010
# See https://flutter.dev/docs/deployment/android#reference-the-keystore-from-the-app
1111
key.properties
1212
**/*.keystore
13-
**/*.jks
13+
**/*.jks
14+
**/google-services.json

android/app/build.gradle

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -116,6 +116,6 @@ flutter {
116116

117117
dependencies {
118118
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')
120120
implementation 'com.google.firebase:firebase-analytics-ktx'
121121
}

android/build.gradle

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
buildscript {
2-
ext.kotlin_version = '1.3.50'
2+
ext.kotlin_version = '1.5.0'
33
repositories {
44
google()
55
mavenCentral()

lib/app/app_environment.dart

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -32,7 +32,7 @@ class AppEnvironmentProd extends AppEnvironment {
3232
class AppEnvironmentDev extends AppEnvironment {
3333
AppEnvironmentDev()
3434
: super(
35-
appVersion: 'TODO v2.0-dev',
35+
appVersion: 'TODO v2.0-beta',
3636
ussdCodesHashRemote:
3737
'https://todo-devs.github.io/todo-json/hash.json',
3838
ussdCodesRemote: 'https://todo-devs.github.io/todo-json/config.json',

lib/app/widgets/app_drawer.dart

Lines changed: 8 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
import 'package:flutter/material.dart';
22
import 'package:todo/app/app.dart';
3-
import 'package:todo/nauta/nauta.dart';
3+
// import 'package:todo/nauta/nauta.dart';
44
import 'package:todo/settings/settings.dart';
55

66
class AppDrawer extends StatelessWidget {
@@ -45,13 +45,13 @@ class AppDrawer extends StatelessWidget {
4545
),
4646
),
4747
),
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+
// ),
5555
AppDrawerTile(
5656
title: l10n.settings,
5757
icon: Icons.settings_outlined,

lib/app/widgets/app_tab_bar.dart

Lines changed: 8 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -33,14 +33,14 @@ class AppTabBar extends StatelessWidget {
3333
size: 38,
3434
),
3535
),
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+
// ),
4444
],
4545
);
4646
}

lib/home/view/home_view.dart

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@ class HomeView extends StatelessWidget {
1111
final l10n = context.l10n;
1212

1313
return DefaultTabController(
14-
length: 3,
14+
length: 2,
1515
child: Scaffold(
1616
appBar: AppBar(
1717
title: AppBarTitle(l10n.appName),
@@ -71,7 +71,7 @@ class HomeView extends StatelessWidget {
7171
error: (error) => Center(child: Text(error)),
7272
),
7373
),
74-
const Center(child: Text('WIFI')),
74+
// const Center(child: Text('WIFI')),
7575
],
7676
),
7777
),

0 commit comments

Comments
 (0)