Skip to content

Commit 0ef4642

Browse files
author
Janneck Lange
committed
flutter version / analyze fix
1 parent d387539 commit 0ef4642

5 files changed

Lines changed: 46 additions & 53 deletions

File tree

ios/Flutter/AppFrameworkInfo.plist

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -21,6 +21,6 @@
2121
<key>CFBundleVersion</key>
2222
<string>1.0</string>
2323
<key>MinimumOSVersion</key>
24-
<string>12.0</string>
24+
<string>13.0</string>
2525
</dict>
2626
</plist>

ios/Podfile.lock

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -111,7 +111,7 @@ EXTERNAL SOURCES:
111111
SPEC CHECKSUMS:
112112
connectivity_plus: 2a701ffec2c0ae28a48cf7540e279787e77c447d
113113
device_info_plus: bf2e3232933866d73fe290f2942f2156cdd10342
114-
Flutter: e0871f40cf51350855a761d2e70bf5af5b9b5de7
114+
Flutter: cabc95a1d2626b1b06e7179b784ebcf0c0cde467
115115
flutter_email_sender: e03bdda7637bcd3539bfe718fddd980e9508efaa
116116
flutter_local_notifications: ff50f8405aaa0ccdc7dcfb9022ca192e8ad9688f
117117
flutter_secure_storage: d33dac7ae2ea08509be337e775f6b59f1ff45f12

ios/Runner.xcodeproj/project.pbxproj

Lines changed: 3 additions & 11 deletions
Original file line numberDiff line numberDiff line change
@@ -275,14 +275,10 @@
275275
inputFileListPaths = (
276276
"${PODS_ROOT}/Target Support Files/Pods-Runner/Pods-Runner-frameworks-${CONFIGURATION}-input-files.xcfilelist",
277277
);
278-
inputPaths = (
279-
);
280278
name = "[CP] Embed Pods Frameworks";
281279
outputFileListPaths = (
282280
"${PODS_ROOT}/Target Support Files/Pods-Runner/Pods-Runner-frameworks-${CONFIGURATION}-output-files.xcfilelist",
283281
);
284-
outputPaths = (
285-
);
286282
runOnlyForDeploymentPostprocessing = 0;
287283
shellPath = /bin/sh;
288284
shellScript = "\"${PODS_ROOT}/Target Support Files/Pods-Runner/Pods-Runner-frameworks.sh\"\n";
@@ -333,14 +329,10 @@
333329
inputFileListPaths = (
334330
"${PODS_ROOT}/Target Support Files/Pods-Runner/Pods-Runner-resources-${CONFIGURATION}-input-files.xcfilelist",
335331
);
336-
inputPaths = (
337-
);
338332
name = "[CP] Copy Pods Resources";
339333
outputFileListPaths = (
340334
"${PODS_ROOT}/Target Support Files/Pods-Runner/Pods-Runner-resources-${CONFIGURATION}-output-files.xcfilelist",
341335
);
342-
outputPaths = (
343-
);
344336
runOnlyForDeploymentPostprocessing = 0;
345337
shellPath = /bin/sh;
346338
shellScript = "\"${PODS_ROOT}/Target Support Files/Pods-Runner/Pods-Runner-resources.sh\"\n";
@@ -439,7 +431,7 @@
439431
GCC_WARN_UNINITIALIZED_AUTOS = YES_AGGRESSIVE;
440432
GCC_WARN_UNUSED_FUNCTION = YES;
441433
GCC_WARN_UNUSED_VARIABLE = YES;
442-
IPHONEOS_DEPLOYMENT_TARGET = 12.0;
434+
IPHONEOS_DEPLOYMENT_TARGET = 13.0;
443435
MTL_ENABLE_DEBUG_INFO = NO;
444436
SDKROOT = iphoneos;
445437
SUPPORTED_PLATFORMS = iphoneos;
@@ -568,7 +560,7 @@
568560
GCC_WARN_UNINITIALIZED_AUTOS = YES_AGGRESSIVE;
569561
GCC_WARN_UNUSED_FUNCTION = YES;
570562
GCC_WARN_UNUSED_VARIABLE = YES;
571-
IPHONEOS_DEPLOYMENT_TARGET = 12.0;
563+
IPHONEOS_DEPLOYMENT_TARGET = 13.0;
572564
MTL_ENABLE_DEBUG_INFO = YES;
573565
ONLY_ACTIVE_ARCH = YES;
574566
SDKROOT = iphoneos;
@@ -619,7 +611,7 @@
619611
GCC_WARN_UNINITIALIZED_AUTOS = YES_AGGRESSIVE;
620612
GCC_WARN_UNUSED_FUNCTION = YES;
621613
GCC_WARN_UNUSED_VARIABLE = YES;
622-
IPHONEOS_DEPLOYMENT_TARGET = 12.0;
614+
IPHONEOS_DEPLOYMENT_TARGET = 13.0;
623615
MTL_ENABLE_DEBUG_INFO = NO;
624616
SDKROOT = iphoneos;
625617
SUPPORTED_PLATFORMS = iphoneos;

lib/screens/mitgliedsliste/mitglied_liste_filter.dart

Lines changed: 27 additions & 26 deletions
Original file line numberDiff line numberDiff line change
@@ -296,34 +296,35 @@ class EditGroupSettingsDialogState extends State<EditGroupSettingsDialog> {
296296
),
297297
const SizedBox(height: 16),
298298
const Text('Welche Merkmale müssen zutreffen?'),
299-
Row(
300-
mainAxisAlignment: MainAxisAlignment.spaceEvenly,
301-
children: [
302-
Expanded(
303-
child: RadioListTile<String>(
304-
title: const Text('eines'),
305-
value: 'OR',
306-
groupValue: orFilter ? 'OR' : 'AND',
307-
onChanged: (String? value) {
308-
setState(() {
309-
orFilter = value == 'OR';
310-
});
311-
},
312-
),
299+
Padding(
300+
padding: const EdgeInsets.symmetric(vertical: 8.0),
301+
child: ToggleButtons(
302+
isSelected: [orFilter, !orFilter],
303+
onPressed: (int index) {
304+
setState(() {
305+
orFilter =
306+
index == 0; // 0 -> 'eines' (OR), 1 -> 'alle' (AND)
307+
});
308+
},
309+
borderRadius: BorderRadius.circular(6),
310+
constraints: const BoxConstraints(
311+
minHeight: 36,
312+
minWidth: 80,
313313
),
314-
Expanded(
315-
child: RadioListTile<String>(
316-
title: const Text('alle'),
317-
value: 'AND',
318-
groupValue: orFilter ? 'OR' : 'AND',
319-
onChanged: (String? value) {
320-
setState(() {
321-
orFilter = value == 'OR';
322-
});
323-
},
314+
color: Theme.of(context).colorScheme.onSurface,
315+
selectedColor: Theme.of(context).colorScheme.onPrimary,
316+
fillColor: Theme.of(context).colorScheme.primary,
317+
children: const [
318+
Padding(
319+
padding: EdgeInsets.symmetric(horizontal: 12.0),
320+
child: Text('eines'),
324321
),
325-
),
326-
],
322+
Padding(
323+
padding: EdgeInsets.symmetric(horizontal: 12.0),
324+
child: Text('alle'),
325+
),
326+
],
327+
),
327328
),
328329
const SizedBox(height: 16),
329330
if (orFilter)

pubspec.lock

Lines changed: 14 additions & 14 deletions
Original file line numberDiff line numberDiff line change
@@ -761,26 +761,26 @@ packages:
761761
dependency: transitive
762762
description:
763763
name: leak_tracker
764-
sha256: "6bb818ecbdffe216e81182c2f0714a2e62b593f4a4f13098713ff1685dfb6ab0"
764+
sha256: "33e2e26bdd85a0112ec15400c8cbffea70d0f9c3407491f672a2fad47915e2de"
765765
url: "https://pub.dev"
766766
source: hosted
767-
version: "10.0.9"
767+
version: "11.0.2"
768768
leak_tracker_flutter_testing:
769769
dependency: transitive
770770
description:
771771
name: leak_tracker_flutter_testing
772-
sha256: f8b613e7e6a13ec79cfdc0e97638fddb3ab848452eff057653abd3edba760573
772+
sha256: "1dbc140bb5a23c75ea9c4811222756104fbcd1a27173f0c34ca01e16bea473c1"
773773
url: "https://pub.dev"
774774
source: hosted
775-
version: "3.0.9"
775+
version: "3.0.10"
776776
leak_tracker_testing:
777777
dependency: transitive
778778
description:
779779
name: leak_tracker_testing
780-
sha256: "6ba465d5d76e67ddf503e1161d1f4a6bc42306f9d66ca1e8f079a47290fb06d3"
780+
sha256: "8d5a2d49f4a66b49744b23b018848400d23e54caf9463f4eb20df3eb8acb2eb1"
781781
url: "https://pub.dev"
782782
source: hosted
783-
version: "3.0.1"
783+
version: "3.0.2"
784784
lints:
785785
dependency: transitive
786786
description:
@@ -1423,26 +1423,26 @@ packages:
14231423
dependency: "direct dev"
14241424
description:
14251425
name: test
1426-
sha256: "301b213cd241ca982e9ba50266bd3f5bd1ea33f1455554c5abb85d1be0e2d87e"
1426+
sha256: "65e29d831719be0591f7b3b1a32a3cda258ec98c58c7b25f7b84241bc31215bb"
14271427
url: "https://pub.dev"
14281428
source: hosted
1429-
version: "1.25.15"
1429+
version: "1.26.2"
14301430
test_api:
14311431
dependency: transitive
14321432
description:
14331433
name: test_api
1434-
sha256: fb31f383e2ee25fbbfe06b40fe21e1e458d14080e3c67e7ba0acfde4df4e0bbd
1434+
sha256: "522f00f556e73044315fa4585ec3270f1808a4b186c936e612cab0b565ff1e00"
14351435
url: "https://pub.dev"
14361436
source: hosted
1437-
version: "0.7.4"
1437+
version: "0.7.6"
14381438
test_core:
14391439
dependency: transitive
14401440
description:
14411441
name: test_core
1442-
sha256: "84d17c3486c8dfdbe5e12a50c8ae176d15e2a771b96909a9442b40173649ccaa"
1442+
sha256: "80bf5a02b60af04b09e14f6fe68b921aad119493e26e490deaca5993fef1b05a"
14431443
url: "https://pub.dev"
14441444
source: hosted
1445-
version: "0.6.8"
1445+
version: "0.6.11"
14461446
timezone:
14471447
dependency: "direct main"
14481448
description:
@@ -1552,10 +1552,10 @@ packages:
15521552
dependency: transitive
15531553
description:
15541554
name: vector_math
1555-
sha256: "80b3257d1492ce4d091729e3a67a60407d227c27241d6927be0130c98e741803"
1555+
sha256: d530bd74fea330e6e364cda7a85019c434070188383e1cd8d9777ee586914c5b
15561556
url: "https://pub.dev"
15571557
source: hosted
1558-
version: "2.1.4"
1558+
version: "2.2.0"
15591559
vm_service:
15601560
dependency: transitive
15611561
description:

0 commit comments

Comments
 (0)