Questions tagged [flutter-responsive-layout]

21 questions
4
votes
6 answers

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 want to adjust the textsize inside these buttons…
progNewbie
  • 4,362
  • 9
  • 48
  • 107
3
votes
1 answer

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's take too much time to render the design because…
2
votes
0 answers

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 'ResponsiveRowColumnItem' entries. However, I want to…
user2868835
  • 1,250
  • 3
  • 19
  • 33
1
vote
2 answers

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 to solve the problem with no success. This is…
Aurora
  • 119
  • 1
  • 7
1
vote
3 answers

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 Column. The only problem is that my Footer was…
1
vote
0 answers

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 with the widgets back in the same positions & keep…
Luke Irvin
  • 1,179
  • 1
  • 20
  • 39
1
vote
1 answer

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 safe area and based on that I am spacing and…
1
vote
3 answers

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 happens like what happen in this photo and also…
1
vote
2 answers

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.
1
vote
1 answer

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 possible to set the size of the container with the…
0
votes
0 answers

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 should always on the circumference of the bigger…
MattPrash
  • 67
  • 5
0
votes
1 answer

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 the entire screen. I'm trying to figure out how…
0
votes
0 answers

Resposive Alignment of 2 items in flutter

I'm trying to resposively align 2 items which are an animated text and a robot image, in the image robot has a display screen and the text should always be aligned in the robot's screen, looking forward for some tips, thanks in advance. …
0
votes
0 answers

Expand/Collapse functionality between to list in flutter

I'm trying to get Expand/Collapse after I choose an item, after closing I find the range error. I tried to use this package and this package but I did not succeed How could you solve this problem? please check the following video and suggest how can…
0
votes
0 answers

Image assets are not being used based on device pixel ratio

I have an image I'm trying to display based on the device pixel ratio. But the app just keeps using the 1.0x version of the image. In my project's directory I have the structure assets tablet graphics 0.5x image.png 2.0x …
1
2