Questions tagged [flutter-row]

37 questions
1
vote
1 answer

Flutter/ 3 Rows in one Container or AlertDialog

I'm trying to make an Alert Dialog with a navigation window. There should be 3 Rows with different IconButtons to Navigate on another site. Unfortunately I'm new to Flutter and don't know how to make 2 more Rows. Can someone please help me? Is it…
1
vote
2 answers

Widgets in a row not spacing themselves out evenly

I'm trying to make a widget to display posts by users on a social media platform, I have certain elements I want to include in the post, one of them being the external links he might have attached while creating the posts. I want these links to be…
Dfx11
  • 103
  • 6
1
vote
3 answers

How to give all Row children the same height

I am having a hard time making a Row's two children, i.e. a TextField and a RaisedButton the same height. The button is always shorter in height. I can do that with SizedBox, but it is a fixed height and is manual. Here's what my code and UI looks…
Mehdi Haghgoo
  • 3,144
  • 7
  • 46
  • 91
1
vote
1 answer

Flutter multiple items in Row with Expanded/Flexible

I want to have more(in this example 4) items in Row. I tried use Expanded or Flexible or mainAxisAlignment: MainAxisAlignment.spaceEvenly to fill up all width of screen. But I want to heve items lets say specific width and height 50 pixels, and…
Sam
  • 308
  • 1
  • 3
  • 14
0
votes
2 answers

how to make two widgets centered inside a row

I have a custom table and in its rows there is such a widget row (row in row C: ) and I can't figure out how to make them centered, and not as in the screenshot :C These properties don't help :C mainAxisAlignment:…
steind.VY
  • 333
  • 2
  • 11
0
votes
1 answer

Remove empty rows from Flutter paginated datatable

I tried to remove empty rows per page using this reference remove empty rows. It removes empty rows on page changes but when I try to remove rows on click using this code: datasList.remove(datasList[index]); notifyListeners(); I want to update the…
0
votes
2 answers

Why can't make containers have the same width inside the Row

This question has been asked many times but none of the methods worked for me. I've been trying to make these containers have the same width and height. I tried using Expanded but apperantly, it expands the children to fit the layout, which I don't…
Snefru Clone
  • 77
  • 1
  • 9
0
votes
2 answers

I want to pass a value from one page to another after clicking it if not it should show a message in flutter

I have 5 texts in a row, all text is wrapped inside Inkwell, I want the selected text to send to the next page in the flutter, if not selected it should show the select value in a snack bar Padding( padding: const EdgeInsets.only(left: 5,…
user20528344
0
votes
3 answers

Flutter Row widget with two two text widget is not following one another

I am trying to wrap text (multi line) followed by "Read More" in a Row widget. Lorem Ipsum is simply dummy text of the printing and typesetting industry. Lorem Ipsum has been the industry's standard dummy text ever since the 1500s, when an unknown…
0
votes
1 answer

Bypass the alignment of the parent column in flutter

So I have a column and I want all but one of the children to align to the Left part of it (CrossAxisAlignment.start) ,however I want the last widget to be aligned to the Center. I tried using a stack with an alignment widget, Center widget, Wrapping…
0
votes
1 answer

How do you center two texts in containers inside a row widget?

How do you center two texts in containers inside a row widget?
0
votes
3 answers

Flutter. Row with MainAxisAlignment.spaceBetween overflowed

I am new in flutter and I'm trying to implement screen like this: As you can see I need to make something like a table. I ran into a problem while implementing table rows. Here is my code: Row( mainAxisAlignment:…
testivanivan
  • 967
  • 13
  • 36
0
votes
2 answers

How can i solve this problem using row and column? flutter problem

help_post I need this problem solution.I faced some problems to solve it~I'm a fresher . I tried but it doesn't working... That's The problem is given by my friend and that's minemy output sry for my bad english...
0
votes
1 answer

Flutter align text in multiple rows

I have this card: This is the code of one row (I have 6 rows): Row( mainAxisAlignment: MainAxisAlignment.spaceBetween, children: [ ClipOval( child: Container( height: 20, width: 20, color: Colors.lightBlue, …
lukko
  • 67
  • 1
  • 8
0
votes
1 answer

Align text inside children of Row widget in flutter

I am trying to generate the legends of the chart using the Column and Row widget dynamically. The issue that I am facing is aligning the text in the next row. You can see that because of the larger text Average and Sub-Pair the next item in the…
Hunt
  • 8,215
  • 28
  • 116
  • 256