Skip to content

Commit

Permalink
fixed up some minor issues
Browse files Browse the repository at this point in the history
  • Loading branch information
bmaroti9 committed Feb 8, 2024
1 parent 8ad97eb commit e537f61
Show file tree
Hide file tree
Showing 4 changed files with 6 additions and 3 deletions.
4 changes: 2 additions & 2 deletions android/app/build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -52,8 +52,8 @@ android {
// For more information, see: https://docs.flutter.dev/deployment/android#reviewing-the-gradle-build-configuration.
minSdkVersion flutter.minSdkVersion
targetSdkVersion flutter.targetSdkVersion
versionCode 23
versionName "2.2.2"
versionCode 24
versionName "2.2.3"
}

buildTypes {
Expand Down
1 change: 1 addition & 0 deletions lib/main_screens.dart
Original file line number Diff line number Diff line change
Expand Up @@ -171,6 +171,7 @@ Widget TabletLayout(data, updateLocation, context) {
},
backgroundColor: WHITE,
color: data.current.backcolor,
displacement: 100,
child: Padding(
padding: EdgeInsets.only(left: 35, right: 25, bottom: 30, top: toppad),
child: SingleChildScrollView(
Expand Down
2 changes: 1 addition & 1 deletion lib/main_ui.dart
Original file line number Diff line number Diff line change
Expand Up @@ -26,7 +26,7 @@ import 'package:hihi_haha/radar.dart';
import 'package:hihi_haha/settings_page.dart';
import 'ui_helper.dart';

Color instantBackColor = const Color(0xff7a9dbc);
Color instantBackColor = Colors.white;

class WeatherPage extends StatelessWidget {
final data;
Expand Down
2 changes: 2 additions & 0 deletions lib/search_screens.dart
Original file line number Diff line number Diff line change
Expand Up @@ -66,6 +66,7 @@ Widget searchBar(Color color, List<String> recommend,
debounceDelay: const Duration(milliseconds: 500),

controller: controller,
width: 800,

onQueryChanged: (query) async {
isEditing = false;
Expand Down Expand Up @@ -493,6 +494,7 @@ class dumbySearch extends StatelessWidget {
Padding(
padding: const EdgeInsets.all(15.0),
child: Container(
constraints: const BoxConstraints(maxWidth: 800),
padding: EdgeInsets.all(10),
decoration: BoxDecoration(
borderRadius: BorderRadius.circular(20),
Expand Down

0 comments on commit e537f61

Please sign in to comment.