Issue Hey I’m looking to implement the above widget: I’m a bit struggling to implement it using CupertinoPicker or CupertinoDatePicker. How do I do that? Solution The solution was to upload two Cupertino.builders side by side. The downside is that
Continue readingCategory: Cupertino
how to increase cupertino time picker range more than 24h flutter
Issue I tried to increase the range of Cupertino pickers of more than 24h but didn’t get any success I am surprised if there is any way to increase the range to more than 24 as only 12 or 24h
Continue readingHow to scroll CupertinoDatePicker with mouse drags?
Issue I used a CupertinoDatePicker in a Flutter project that also should be deployed as a web app. But the CupertinoDatePicker only reacts to the mouse wheel, not to drag events. I think that this is unexpected behavior for many
Continue readingThe argument type 'List<dynamic>' can't be assigned to the parameter type 'List<Value*>*' , flutter cupertino date picker inside form_bloc
Issue I tried to following the the code from https://github.com/GiancarloCode/form_bloc/issues/64 about modify widget inside form_bloc using import dependencies from select_dialog, actually i try to implementing cupertino date picker widget inside form_bloc just like this: I try to follow the tutorial
Continue readingThe body might complete normally, causing 'null' to be returned, but the return type, 'Future<DateTime*>*', is a potentially non-nullable type
Issue I made a bloc builder that implemented form_bloc and i change the date-picker widget to ios style by using cupertino this code/body is showing error alert that it might causing null to be returned, the code: onShowPicker: (context, currentValue)
Continue readinghow to build a IOS style list with listview builder in Flutter?
Issue I was wondering how to build a Cupertino list like that, with a listView.builder I did it with the CupertinoFormSection, but when i add the listView.builder inside the form, the list does not show. So, right now i put
Continue readingFlutter Material to Cupertino transformation issues
Issue I am working on a project which is almost 80% done. All my project is done on Material design. Now I am trying to move Cupertino UI theme for Android and IOS both. As I am trying to migrate
Continue readingMultiple entity-bound CupertinoTextFields that save on focus out
Issue I have a list of some entries I want edit on focus out. I createe FocusNode for each entry, CupertinoTextField for each entry too. var textField = (UserMotivator um) { var controller; var focusNode = new FocusNode(); focusNode.addListener(() {
Continue readingDoes anyone know how to add a gradient background to CupertinoSliverAppBar?
Issue I am trying to add a gradient background to a CupertinoSliverAppBar in a Flutter app but I cannot seem to figure out how to do it. The SliverAppBar has a flexibleSpace property that would accept a gradient but the
Continue readingHas a Cupertino Navigation to show the app bar but need have end drawer
Issue I’m trying to add the CupertinoNavigationBar with endDrawer, I try to add Gesture Detector on trailing, but isn’t work, shows this: The following assertion was thrown while handling a gesture: flutter: `Scaffold.of()` called with a context that does not
Continue reading