Skip to content

Commit

Permalink
Beta 1
Browse files Browse the repository at this point in the history
  • Loading branch information
Luis Ciber committed Oct 9, 2021
1 parent 0212cd4 commit 3617f85
Show file tree
Hide file tree
Showing 7 changed files with 23 additions and 22 deletions.
3 changes: 2 additions & 1 deletion android/.gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -10,4 +10,5 @@ GeneratedPluginRegistrant.java
# See https://flutter.dev/docs/deployment/android#reference-the-keystore-from-the-app
key.properties
**/*.keystore
**/*.jks
**/*.jks
**/google-services.json
2 changes: 1 addition & 1 deletion android/app/build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -116,6 +116,6 @@ flutter {

dependencies {
implementation "org.jetbrains.kotlin:kotlin-stdlib-jdk7:$kotlin_version"
implementation platform('com.google.firebase:firebase-bom:28.4.0')
implementation platform('com.google.firebase:firebase-bom:28.4.2')
implementation 'com.google.firebase:firebase-analytics-ktx'
}
2 changes: 1 addition & 1 deletion android/build.gradle
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
buildscript {
ext.kotlin_version = '1.3.50'
ext.kotlin_version = '1.5.0'
repositories {
google()
mavenCentral()
Expand Down
2 changes: 1 addition & 1 deletion lib/app/app_environment.dart
Original file line number Diff line number Diff line change
Expand Up @@ -32,7 +32,7 @@ class AppEnvironmentProd extends AppEnvironment {
class AppEnvironmentDev extends AppEnvironment {
AppEnvironmentDev()
: super(
appVersion: 'TODO v2.0-dev',
appVersion: 'TODO v2.0-beta',
ussdCodesHashRemote:
'https://todo-devs.github.io/todo-json/hash.json',
ussdCodesRemote: 'https://todo-devs.github.io/todo-json/config.json',
Expand Down
16 changes: 8 additions & 8 deletions lib/app/widgets/app_drawer.dart
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
import 'package:flutter/material.dart';
import 'package:todo/app/app.dart';
import 'package:todo/nauta/nauta.dart';
// import 'package:todo/nauta/nauta.dart';
import 'package:todo/settings/settings.dart';

class AppDrawer extends StatelessWidget {
Expand Down Expand Up @@ -45,13 +45,13 @@ class AppDrawer extends StatelessWidget {
),
),
),
AppDrawerTile(
title: l10n.accounts,
icon: Icons.account_circle_outlined,
onTap: () {
AccountsPage.open(context);
},
),
// AppDrawerTile(
// title: l10n.accounts,
// icon: Icons.account_circle_outlined,
// onTap: () {
// AccountsPage.open(context);
// },
// ),
AppDrawerTile(
title: l10n.settings,
icon: Icons.settings_outlined,
Expand Down
16 changes: 8 additions & 8 deletions lib/app/widgets/app_tab_bar.dart
Original file line number Diff line number Diff line change
Expand Up @@ -33,14 +33,14 @@ class AppTabBar extends StatelessWidget {
size: 38,
),
),
SizedBox(
height: 64,
width: 68,
child: Icon(
Icons.wifi,
size: 38,
),
),
// SizedBox(
// height: 64,
// width: 68,
// child: Icon(
// Icons.wifi,
// size: 38,
// ),
// ),
],
);
}
Expand Down
4 changes: 2 additions & 2 deletions lib/home/view/home_view.dart
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@ class HomeView extends StatelessWidget {
final l10n = context.l10n;

return DefaultTabController(
length: 3,
length: 2,
child: Scaffold(
appBar: AppBar(
title: AppBarTitle(l10n.appName),
Expand Down Expand Up @@ -71,7 +71,7 @@ class HomeView extends StatelessWidget {
error: (error) => Center(child: Text(error)),
),
),
const Center(child: Text('WIFI')),
// const Center(child: Text('WIFI')),
],
),
),
Expand Down

0 comments on commit 3617f85

Please sign in to comment.