flutter-cupertino Questions
5
Solved
I have a CupertinoAlertDialog and AlertDialog in my Flutter app. every time the dialog pops up, everything behind it becomes darker. I would like to remove the background. how do I do that?
Cupert...
Slaphappy asked 12/6, 2019 at 15:8
4
Solved
Am I missing something obvious here?
Setting minSize on CupertinoButton button sets width and height (see image).
How do I set only the width?
Thanks in advance.
Kinney asked 19/5, 2020 at 14:17
5
Solved
Attached below is my current code for changing the text color of CupertinoDatePicker:
Container(
decoration:
BoxDecoration(borderRadius: BorderRadius.circular(12)),
height: MediaQuery.of(context...
Ferdinand asked 18/5, 2021 at 4:14
3
I have the following widget tree:
@override
Widget build(BuildContext context) {
final double topMargin = Platform.isAndroid ? 0 : 105; // TODO: (why margin on iOS?)
final double interMargin = ...
Rhodes asked 17/12, 2019 at 18:11
4
Solved
Do we have an easy way of doing that kind of menu below using CupertinoApp only ?
Practicable asked 22/7, 2019 at 12:18
2
I'm using the sample below (taken from the CupertinoTabScaffold documentation page).
There is a "slide" transition when pushing a new route inside the tab, but when I click on a tabbar item, the c...
Scrubland asked 24/2, 2020 at 0:25
1
Solved
I have a Flutter app which uses Material theme for Android and Cupertino theme for iOS. But I use Card widget, which is a Material widget, in both themes. Now I have the following code in main.dart...
Haik asked 12/4, 2021 at 9:18
3
I would like to know if there is a way to dock a floating action button in a CupertinoTabBar. I would like to get the results as in the picture below
My screen is organized as follow
Cupertin...
Octavo asked 24/9, 2019 at 10:2
2
Solved
I have a CupertinoApp and I would like to apply a custom TextStyle to all the screen/object of my app. For example I would lie to set a font family to all Text widget & Dialog widget and use th...
Mediocre asked 7/10, 2019 at 14:49
1
Solved
I have an App which uses CupertinoApp-CupertinoTabScaffold.
My App's hierarchy
CupertinoApp
- CupertinoTabScaffold
-- CupertinoTabView
--- Home
---- Movie list
----- Movie Detail
--- Search
---- ...
Hedve asked 1/6, 2020 at 21:52
2
Solved
my question is, how I can change inactive color of CupertinoSwitch in Flutter, with normal Switch it's fairly easy, because we have property for that, but on CupertinoSwitch (iOS) we do not have th...
Hydroxylamine asked 17/10, 2019 at 9:24
3
Solved
I'm new to flutter and I need help.
I'm creating an app where the user can select data through a CupertinoPicker.
The picker works fine, but I would like to change its style.
Currently the style...
Furness asked 30/7, 2019 at 10:51
2
I tried something like this:
@override
Widget build(BuildContext context) {
return CupertinoPageScaffold(
navigationBar: CupertinoNavigationBar(
middle: Text(widget.title),
),
child: Center...
Eskisehir asked 3/4, 2019 at 3:39
2
Solved
I would like to change the color of the back button in my flutter app.
Here is what I have at the moment: Screenshoot
I would like to change the color from light blu to white. I have searched onl...
Ambulance asked 6/9, 2019 at 18:25
2
I need to change the font size of CupertinoDatePicker so it looks more like native one. The font is small compared to ios datepicker.
For the height wrapping in a Container with height of MediaQue...
Ginnifer asked 7/3, 2019 at 18:39
1
Solved
First of all, I have tried using Center(),
With that out the way, it seems cupertino icons are off center
IconButton(
icon: const Icon(
CupertinoIcons.add_circled,
color: Colors.black,
),
pa...
Mimamsa asked 14/3, 2019 at 14:1
1
Solved
I'm using CupertinoTabBar in my flutter app.
Problem is the bottomBar shows when keyboard appears, and it shouldn't. Its a bottom bar, it should be in bottom always.
I've not found some way or tri...
Newcomb asked 20/5, 2019 at 22:39
1
Solved
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 from M...
Huber asked 3/3, 2019 at 6:2
1
I know that to use them you have to import 'package:flutter/cupertino.dart';and use it like this Icon(CupertinoIcons.info); but it's hard to pick needed icon.
Dear Flutter team, please make comple...
Bulldozer asked 2/4, 2019 at 6:36
1
I have Flutter app that is using Cupertino UI components. I want to show the the Material design date_picker instead of IOS style date picker. Is there any way I can do this?
In short I want to ke...
Apologia asked 4/3, 2019 at 2:59
1
© 2022 - 2025 — McMap. All rights reserved.