File tree Expand file tree Collapse file tree 2 files changed +3
-3
lines changed
lib/app/modules/addOrUpdateAlarm Expand file tree Collapse file tree 2 files changed +3
-3
lines changed Original file line number Diff line number Diff line change @@ -1545,7 +1545,6 @@ class AddOrUpdateAlarmController extends GetxController {
15451545 : selectedTime.value.hour.toString ()));
15461546 inputMinutesController.text = selectedTime.value.minute.toString ().padLeft (2 , '0' );
15471547 }
1548- }
15491548
15501549 int orderedCountryCode (Country countryA, Country countryB) {
15511550 // `??` for null safety of 'dialCode'
@@ -1554,6 +1553,7 @@ class AddOrUpdateAlarmController extends GetxController {
15541553
15551554 return int .parse (dialCodeA).compareTo (int .parse (dialCodeB));
15561555 }
1556+ }
15571557
15581558class LimitRange extends TextInputFormatter {
15591559 LimitRange (this .minRange, this .maxRange) : assert (minRange < maxRange);
Original file line number Diff line number Diff line change @@ -45,12 +45,12 @@ class GuardianAngel extends StatelessWidget {
4545 onInputChanged: (value) {},
4646 onInputValidated: (value) {},
4747 spaceBetweenSelectorAndTextField: 0 ,
48- selectorConfig: const SelectorConfig (
48+ selectorConfig: SelectorConfig (
4949 showFlags: true ,
5050 setSelectorButtonAsPrefixIcon: true ,
5151 leadingPadding: 0 ,
5252 trailingSpace: false ,
53- countryComparator: orderedCountryCode,
53+ countryComparator: controller. orderedCountryCode,
5454 ),
5555 ),
5656 ),
You can’t perform that action at this time.
0 commit comments