Questions tagged [flutter-responsive-layout]
21 questions
0
votes
3 answers
How to contain this column within my box in Flutter?
I am learning Flutter and am trying to develop a login screen. Specifically so far it's focused on just different tablets. The two I am simulating on as an example are an iPad and Pixel C tablet. I quickly drew a paint representation as I'm using a…

TheCoolest2
- 33
- 7
0
votes
1 answer
Flutter - Adding responsive_framework to MaterialApp causing navigation key to be null
I'm trying to add responsive_framework to my app.
When I change my MaterialApp from this:
return MaterialApp(
theme: lightTheme,
darkTheme: darkTheme,
navigatorKey: globalKey,
onGenerateRoute:…

BeniaminoBaggins
- 11,202
- 41
- 152
- 287
0
votes
0 answers
Flutter Ambient UI - What should be the optimised approach for production level responsive app in web, android and ios platform using single codebase?
I was trying out flutter platform to create a multipage website with android and ios responsiveness using single codebase for my flutter app. I've already tried some single page samples in flutter which are following,
Flutter web, android & ios…

Jay Mungara
- 6,663
- 2
- 27
- 49
0
votes
1 answer
How can i fix my flutter app to be responsive in different screen sizes?
I'm new to flutter I made a task manager app but the applications screen is overflowing on different phones.
I'm not exactly sure where can I edit the code for a responsive pixel-perfect screen!
It'll be helpful if someone explains it…

Mufasa
- 1
0
votes
0 answers
How to expand all children of a Stack that includes a CustomPainter in Flutter
Let's say in Flutter we have a Stack that contains:
A CustomPainter with size of Size.infinite
Any other widget that is not a Custom Painter (that we also want to fill all available space exactly the same way that the custom painter does)
In this…

Nerdy Bunz
- 6,040
- 10
- 41
- 100
-1
votes
2 answers
SingleChildScrollView inside a nest of Columns
I am having trouble implementing SingleChildScrollView. In my understanding, I can use SingleChildScrollView to make the widgets inside it scrollable. I have created following basic example in which I want ElevatedButton to be at the bottom. The…

Saad Bashir
- 4,341
- 8
- 30
- 60