7 questions
1
vote
0
answers
35
views
CupertinoNavigationBar's backgroundColor no longer working?
Since updating to flutter 3.29.3, the backgroundColor of my CupertinoNavigationBar is always white / transparent (it simply never applies any color, no matter what you do).
To reproduce:
Create a new ...
0
votes
1
answer
121
views
Futter CupertinoNavigationBar very bad performance with root navigator
For unknown reasons, I found out that the CupertinoNavigationBar causes huge lags and frame drops when transitioning between pages when the following conditions are met:
its parent, the ...
1
vote
2
answers
2k
views
How to achieve Cupertino Style Navigation Bar with a cupertino search field inside it
I am developing an iOS application in flutter. I want a navigation bar which can be expandable. On expand there should be large title on left side and on collapse same title should be on top center. ...
0
votes
0
answers
19
views
How to implement simple redirect logic after buttom submission from a custom bottom nav bar based on a CupertintoTabScaffold
flutter noob here.
I followed along on a tutorial to create my bottom navigation bar. Now all I want is to have a redirect to a confirmation page after a user submits a new trip to be created in my ...
3
votes
1
answer
3k
views
How can I change the height of CupertinoNavigationBar in Flutter?
I want to increase CupertinoNavigationBar heigth. The code is like this:
child: CustomCupertinoNavigationBar(
padding: EdgeInsetsDirectional.zero,
backgroundColor: Colors.white,
...
1
vote
2
answers
3k
views
Flutter how to hide Cupertino bottom navigation bar at next page
I currently working on a project need to build with Cupertino widget. Everything is fine until I trying not to display bottom navigation bar at next page, but the bottom navigation bar still bring ...
0
votes
1
answer
1k
views
Flutter: CupertinoTabScaffold with CupertinoTabBar creating RenderFlex overflow issue at bottom for TabBar in pushed screens
I am an iOS developer, So I have idea how TabBarController works in iOS. Now I am working on Flutter (First APP).
I have an App which uses CupertinoApp-CupertinoTabScaffold-CupertinoTabBar to persist ...