Questions tagged [flutter-cupertino]
184 questions
18
votes
1 answer
How to use Flutter Cupertino Icons?
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 complete Cupertino icons reference somewhere. One place has…

temirbek
- 1,415
- 1
- 14
- 27
13
votes
2 answers
Is it possible to animate the transition between the tabs of a CupertinoTabScaffold?
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 content is brutally replaced. How can I have a…

ncuillery
- 14,308
- 2
- 22
- 31
12
votes
4 answers
Remove grey background for flutter alert dialog
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?
CupertinoDialogAction(
child: Text('Delete',
…

Sharhad Bashar
- 123
- 1
- 1
- 4
10
votes
4 answers
Flutter: Cupertino ListTile ? (or How To Create iOS-Like-Settings Menu)
Do we have an easy way of doing that kind of menu below using CupertinoApp only ?

Allan Stepps
- 1,047
- 1
- 10
- 23
9
votes
4 answers
How to access Cupertino Icons 1.0.0 gallery?
I'm having an issue accessing the Cupertino Icons 1.0.0 gallery. From here [1]: https://flutter.dev/docs/release/breaking-changes/cupertino-icons-1.0.0 I can normally access the gallery but today I got a 404 page. Are others having this same issue?

Joshua Park
- 91
- 1
- 2
8
votes
3 answers
How to set width of CupertinoButton in Flutter?
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.

Ajay Gautam
- 997
- 12
- 14
8
votes
3 answers
Can I dock a floating action button in a CupertinoTabBar?
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…

M4trix Dev
- 1,828
- 3
- 23
- 48
8
votes
2 answers
How to change font size for CupertinoDatePicker in Flutter?
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 MediaQuery.of(context).copyWith().size.height / 3 makes the…

cosinus
- 1,905
- 3
- 15
- 21
8
votes
1 answer
Flutter Material to Cupertino transformation issues
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 Material design to Cupertino UI I am facing lots of…

Sam
- 2,972
- 6
- 34
- 62
7
votes
2 answers
How to set textStyle of a Cupertino app in flutter
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 that font across all my app. I was hoping to set it once…

M4trix Dev
- 1,828
- 3
- 23
- 48
7
votes
1 answer
How to hide cupertinoTabBar when keyboard is displayed? or how to make keyboard cover the bar? or keep the tabbar in bottom always?
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 trick for do this.
Maybe someone can guide me to get…

Paula Andrea
- 230
- 2
- 10
7
votes
2 answers
In CupertinoNavigationBar how do i show a button besides back button in leading?
I tried something like this:
@override
Widget build(BuildContext context) {
return CupertinoPageScaffold(
navigationBar: CupertinoNavigationBar(
middle: Text(widget.title),
),
child: Center(
child:…

hgl
- 2,034
- 4
- 21
- 30
6
votes
1 answer
Flutter : CupertinoTabScaffold - Back button close app on Android from TabView's navigation
I have an App which uses CupertinoApp-CupertinoTabScaffold.
My App's hierarchy
CupertinoApp
- CupertinoTabScaffold
-- CupertinoTabView
--- Home
---- Movie list
----- Movie Detail
--- Search
---- Movie Search List
----- Movie Detail
--- Profile
---…

Utku
- 145
- 1
- 13
6
votes
2 answers
Why Flutter's CupertinoNavigationBar overlaps children in CupertinoPageScaffold?
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 = Platform.isAndroid ? 0 : 10;
final body =…

4ntoine
- 19,816
- 21
- 96
- 220
6
votes
3 answers
CupertinoPicker textStyle flutter
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 is like that, but I want it to be like…

Simone
- 85
- 1
- 5