26 questions
1
vote
1
answer
127
views
flutter can not make sizebox expanded
SizedBox(
height: 500.h,
child:
categories[_selectIndex].categoryName != ""
? CarCategoryView(
categoryId: categories[_selectIndex].id)
: Text(
...
0
votes
1
answer
53
views
Flutter: Maintaining Relative Position of Positioned Widgets on a Responsive Image Across Different Aspect Ratios
Initial situation & expected behavior
I am placing icons on top of an image and they are supposed to be in the same relative position to the image no matter the device, screen size, ... It is ...
1
vote
0
answers
225
views
Should We consider Responsiveness of Windows and Web while developing flutter App just for mobile phones and tablets?
I am developing an app for phones and tablets which will be deployed on the Play Store and Apple Store. I am confused about something. As we know apps can be resized on Windows and the web but we ...
0
votes
1
answer
100
views
How to Scroll a Row vertically having two expanded widgets inside it with LayoutBuilder nested in those expanded widgets?
I am developing a web app. The screen is divided into two expanded widgets nested in Row() widget with LayoutBuilder nested in each.
What I need:
1 When the user changes the height of web app, the UI ...
0
votes
0
answers
56
views
Will Custom SizedBox cause any UI problems?
I've created a custom sizedBox and used the Screenutil extension for responsive design. when wrapping a widget in this custom sizedBox by providing only with or height, The widget is disappearing....
0
votes
0
answers
50
views
Flutter About using Mediaquery
I have a quetion : is it a good practice to use Mediaquery for all kind of dimentions, I mean for padding,margin, border , When I should use and When I should use some fixed Values
0
votes
1
answer
104
views
How to resize all the text and images inside a card widget according to the size of the parent card?
I have a card widget that looks like this:
I want to resize the text and images according to the size of the card
I tried to use layout builder to use the width from constraint but the max width ...
0
votes
1
answer
395
views
PowerApps responsive layouts
We have developed a PowerApps application that works well for websites. Now, we are looking to create a similar application for mobile devices. Instead of building two separate PowerApps applications ...
0
votes
0
answers
146
views
How to position a widget relative to another widget?
Hi I have a circular container and I have to place smaller circular containers at 30 degrees apart on the bigger container (total 12 smaller circles). The smaller circular container center points ...
0
votes
1
answer
905
views
How can I locally save a specific image from the flutter web Application
How can I locally save a specific image from the Flutter web Application? I'm working on a Flutter web application. When I right-click and save the image from the Flutter web application it's saved as ...
0
votes
2
answers
1k
views
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 ...
1
vote
2
answers
50
views
Flutter: bottom overflowed by x Pixel
This is my first time with Flutter and I'm developing a chat app.
I have a text input widget which vertically expands on user typing.
I encountered a bottom overflow error, I tried different solutions ...
1
vote
3
answers
54
views
How to simulate spaceBetween behavior in a listView?
I have a Column of items like this:
Column(
children: [
...items,
Spacer(),
Footer(),
],
)
However, the items list may be dynamic, which makes necessary use a ListView instead of ...
1
vote
0
answers
156
views
Flutter - Responsive Position of Widget among various Screen Sizes
I'm working on something that would be similar to a Story feature like you see on Instagram or Snapchat.
My goal is to be able to add my own custom widgets, save what I create, and then display it ...
1
vote
1
answer
504
views
Flutter Responsive Layout
I am working on building a mobile application using flutter and am stuck on building a resposive login screen layout. To be precise, I am using the MediaQuery to find the screen size and to find the ...
0
votes
3
answers
530
views
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 ...
2
votes
1
answer
395
views
Flutter responsive framework - gap between ResponsiveRowColumnItem entries?
I'm building a responsive Flutter form using the 'responsive_framework' package.
When setting up the form I want to use 'ResponsiveRowColumn' widget to control the form layout, with a number of '...
3
votes
1
answer
482
views
Flutter Web Responsiveness is not efficient
My screen have total 5 device partition size:- 1.Desktop 2.Small Desktop 3.Tablet 4.Small Tablet 5.Mobile,
for that purpose i tried to use layout builder but while i'm resizing the size of display it'...
1
vote
3
answers
715
views
making text adaptive with screen size in flutter
I was developing a simple basketball points counter app using flutter, but I have an error
this is the initial UI of the app
when the number of digits inside the Text widget increase, an overflow ...
0
votes
1
answer
954
views
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,
...
4
votes
6
answers
5k
views
Dynamically adjust text size in buttons inside Row
I am using localization to support multiple languages in my app. This results in having text in buttons with different length. So I need to have it being responsive.
I have two buttons in a Row(). I ...
1
vote
2
answers
232
views
Flutter When I use a textfield on the page I designed with expanded, everything gets smaller when the keyboard is opened
When I use a textfield on the page I designed with expanded, everything gets shrink when the keyboard is opened. How can i disable this.
0
votes
0
answers
152
views
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 ...
1
vote
1
answer
1k
views
Variable size of container in flutter? Either width or height
I am currently developing my first flutter-application and I need some help with my onboarding screen.
The top part has a Lottiefile asset in a container. The bottom part has some Buttons.
Is it ...
0
votes
1
answer
1k
views
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 ...
0
votes
0
answers
1k
views
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 ...