Skip to content

Commit

Permalink
Make version number more obvious this is pre-alpha.
Browse files Browse the repository at this point in the history
Improve constrast in buttons.
  • Loading branch information
BrunoBernardino committed Apr 12, 2024
1 parent 95c5702 commit baf7c83
Show file tree
Hide file tree
Showing 4 changed files with 7 additions and 8 deletions.
8 changes: 4 additions & 4 deletions lib/files_page.dart
Original file line number Diff line number Diff line change
Expand Up @@ -299,7 +299,7 @@ class _FilesPageState extends State<FilesPage> {
return ElevatedButton(
style: const ButtonStyle(
backgroundColor: MaterialStatePropertyAll(Colors.lightBlue),
foregroundColor: MaterialStatePropertyAll(Colors.white)),
foregroundColor: MaterialStatePropertyAll(Colors.black)),
onPressed: () async {
await _updateChosenAccountIndex(thisAccountIndex);

Expand Down Expand Up @@ -499,7 +499,7 @@ class _FilesPageState extends State<FilesPage> {
Colors.lightBlue),
foregroundColor:
MaterialStatePropertyAll(
Colors.white)),
Colors.black)),
onPressed: () async {
await _downloadFile(
'${item.parentPath}${item.name}',
Expand Down Expand Up @@ -620,7 +620,7 @@ class _FilesPageState extends State<FilesPage> {
backgroundColor: MaterialStatePropertyAll(
Colors.lightBlue),
foregroundColor: MaterialStatePropertyAll(
Colors.white)),
Colors.black)),
onPressed: () async {
await _uploadFile(context);

Expand All @@ -638,7 +638,7 @@ class _FilesPageState extends State<FilesPage> {
backgroundColor: MaterialStatePropertyAll(
Colors.lightBlue),
foregroundColor: MaterialStatePropertyAll(
Colors.white)),
Colors.black)),
onPressed: () async {
await _createDirectory(context);

Expand Down
1 change: 0 additions & 1 deletion lib/main.dart
Original file line number Diff line number Diff line change
@@ -1,7 +1,6 @@
import 'package:flutter/material.dart';
import 'package:flutter_dotenv/flutter_dotenv.dart';

// import 'types.dart';
import 'files_page.dart';
import 'settings_page.dart';

Expand Down
4 changes: 2 additions & 2 deletions pubspec.yaml
Original file line number Diff line number Diff line change
@@ -1,9 +1,9 @@
name: bewcloud_mobile
name: bewcloud
description: "bewCloud WebDav client"
publish_to: 'none'


version: 1.0.0+1
version: 0.0.1+1

environment:
sdk: '>=3.3.3 <4.0.0'
Expand Down
2 changes: 1 addition & 1 deletion test/widget_test.dart
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@
import 'package:flutter/material.dart';
import 'package:flutter_test/flutter_test.dart';

import 'package:bewcloud_mobile/main.dart';
import 'package:bewcloud/main.dart';

void main() {
testWidgets('Basic app smoke test', (WidgetTester tester) async {
Expand Down

0 comments on commit baf7c83

Please sign in to comment.