Skip to content

Commit 2c1c2f8

Browse files
committed
MacOS UI adjustments
1 parent 9c1b9f7 commit 2c1c2f8

6 files changed

Lines changed: 13 additions & 13 deletions

File tree

lib/main.dart

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@ void main() {
77
WidgetsFlutterBinding.ensureInitialized();
88
if (Platform.isWindows || Platform.isLinux || Platform.isMacOS) {
99
setWindowTitle('Quick - Down - Shifter APP');
10-
setWindowMinSize(const Size(1050, 400));
10+
setWindowMinSize(const Size(1110, 400));
1111
// setWindowMaxSize(const Size(1200, 730));
1212
}
1313

lib/screens/additional_widgets/numeric_setting_widget.dart

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -32,7 +32,7 @@ class _NumericSettingWidgetState extends State<NumericSettingWidget> {
3232
crossAxisAlignment: CrossAxisAlignment.center,
3333
children: [
3434
SizedBox(
35-
width: 250,
35+
width: 280,
3636
child: Padding(
3737
padding: const EdgeInsets.fromLTRB(10, 5, 10, 10),
3838
child: Text(

lib/screens/downshifter_screen.dart

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -30,7 +30,7 @@ class _DownshifterScreenWidgetState extends State<DownshifterScreenWidget> {
3030
crossAxisAlignment: CrossAxisAlignment.start,
3131
children: [
3232
SizedBox(
33-
width: 450,
33+
width: 480,
3434
child: Column(
3535
children: [
3636
Row(
@@ -42,7 +42,7 @@ class _DownshifterScreenWidgetState extends State<DownshifterScreenWidget> {
4242
current: widget.settingsRepository.dsEnable.value == '1',
4343
first: false,
4444
second: true,
45-
dif: 70.0,
45+
dif: 80.0,
4646
borderColor: Colors.transparent,
4747
borderWidth: 1.0,
4848
height: 55,
@@ -90,7 +90,7 @@ class _DownshifterScreenWidgetState extends State<DownshifterScreenWidget> {
9090
widget.settingsRepository.pushCheckQS.value == '0',
9191
first: true,
9292
second: false,
93-
dif: 70.0,
93+
dif: 80.0,
9494
borderColor: Colors.transparent,
9595
borderWidth: 1.0,
9696
height: 55,
@@ -254,7 +254,7 @@ class _DownshifterScreenWidgetState extends State<DownshifterScreenWidget> {
254254
width: 30,
255255
),
256256
SizedBox(
257-
width: 450,
257+
width: 480,
258258
child: Column(
259259
children: [
260260
Padding(

lib/screens/general_screen.dart

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -21,7 +21,7 @@ class GeneralScreenWidget extends StatelessWidget {
2121
Padding(
2222
padding: const EdgeInsets.fromLTRB(0, 50, 0, 0),
2323
child: SizedBox(
24-
width: 450,
24+
width: 480,
2525
child: Column(
2626
children: [
2727
NumericSettingWidget(

lib/screens/quickshifter_screen.dart

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -30,7 +30,7 @@ class _QuickshifterScreenWidgetState extends State<QuickshifterScreenWidget> {
3030
crossAxisAlignment: CrossAxisAlignment.start,
3131
children: [
3232
SizedBox(
33-
width: 450,
33+
width: 480,
3434
child: Column(
3535
children: [
3636
Row(
@@ -42,7 +42,7 @@ class _QuickshifterScreenWidgetState extends State<QuickshifterScreenWidget> {
4242
current: widget.settingsRepository.qsEnable.value == '1',
4343
first: false,
4444
second: true,
45-
dif: 70.0,
45+
dif: 80.0,
4646
borderColor: Colors.transparent,
4747
borderWidth: 1.0,
4848
height: 55,
@@ -90,7 +90,7 @@ class _QuickshifterScreenWidgetState extends State<QuickshifterScreenWidget> {
9090
widget.settingsRepository.pushCheckQS.value == '1',
9191
first: true,
9292
second: false,
93-
dif: 70.0,
93+
dif: 80.0,
9494
borderColor: Colors.transparent,
9595
borderWidth: 1.0,
9696
height: 55,
@@ -239,7 +239,7 @@ class _QuickshifterScreenWidgetState extends State<QuickshifterScreenWidget> {
239239
width: 30,
240240
),
241241
SizedBox(
242-
width: 450,
242+
width: 480,
243243
child: Column(
244244
children: [
245245
Padding(

lib/screens/settings_screen.dart

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -232,8 +232,8 @@ class _SettingsScreenState extends State<SettingsScreen> {
232232
return const Center(
233233
child: Text(
234234
'READ DATA FIRST',
235-
style:
236-
TextStyle(fontSize: 50, color: Colors.white),
235+
style: TextStyle(
236+
fontSize: 50, color: Colors.white),
237237
),
238238
);
239239
}).toList(),

0 commit comments

Comments
 (0)