Questions tagged [flutter-column]
32 questions
0
votes
3 answers
Flutter form in Container, when validator works Container comes too small for Form
Im a new flutter developer, so please can u help me with this problem.
The problem is when validator in TextFieldForm "works" it adds text that user did something wrong.
And my Container is become to small for Form. I need to stretch the container…
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
How to implement colours dropdown in flutter?
enter image description here
how to implement this dropdown in flutter?(please refer the image above)
when the dropdown is expanded it should show a list of colours in a circular container.

Rosh
- 29
- 4
0
votes
1 answer
Renderbox was not laid out: Horizontal ListView inside Column
I want to achive this layout:
ListView (vertical) -> ListView (horizontal) -> Card item (with fixed size)
But I can't understand why show renderbox error.
Main ListView:
return ListView(
children: [
...
HorizontalList()
...
…

Michele Lacorte
- 5,323
- 7
- 32
- 54
0
votes
1 answer
Image should be upload only that column which is clicked not in all
I write a code where I have colums in Gridviw and each column has the property to upload the image.
The image will be uploaded on that column which is clicked but in my code when I click any column to upload an image it uploads in all columns.
so I…

RAF Algowid
- 87
- 2
- 6
0
votes
1 answer
Cant center my Widgets in Container using Column() flutter
On this pic is my
step1
And when I use Column(), my design isn't a center :( Watch it -> step2
also I cant press on it when I wrapped in Column() and I dont see any mistakes:
Expanded(
child: Padding(
padding:…

clear man
- 15
- 3
0
votes
1 answer
Flutter - Flexible with column inside doesn't take max column height
I'm having problems with flex widget with a column inside where the children have a fixed height (constrained to min and max).
I have to build a screen with a column with many rows as children and each row has some column children and this column…

Kabuki
- 147
- 4
- 10
0
votes
2 answers
Allow flutter Column to take all the available Space in this kind of layout
I've a ListView.builder on my page which wraps Columns inside it according to various parameters.
My code looks something like this :
ListView.builder(
itemCount: sortedList.length,
itemBuilder: (BuildContext context, int index) {
Render…

Divyam Dhadwal
- 395
- 3
- 19
0
votes
1 answer
Flutter Flex Widget
I have this class State:
class _ItemCardState extends State {
double imgSize = 30;
Axis expanded = Axis.horizontal;
@override
Widget build(BuildContext context) {
return GestureDetector(
onTap: () {
setState(()…

Lara Cesio
- 56
- 3
0
votes
1 answer
Flutter render overflow bottom issue on smaller devices
I have a alertdialog in my application which has come form elements init. The form is wrapped with a column widget. How ever when the keyboard opens up it throw bottom overflow issue. To solve that i have wrapped the column using…

Febin Johnson
- 277
- 1
- 6
- 21
0
votes
2 answers
GridView.count() not working inside a Column Widget-Flutter
When i am trying to use GridView.count() to build the body under 'Skills' ,as shown in the design, Its not working i.e the gridview is not visible at all. I understood it might be due to I am using it inside a Column, and a suggested solution was…

ghosh_joy
- 1,031
- 1
- 5
- 10
0
votes
1 answer
Additional width for first element of Column in Flutter
I am trying to achieve two evenly spaced buttons within a Column in Flutter. on Repeating the widgets twice, the first button is Shrunk by a specific width. On inspection, found this.
I'm unable to identify the cause for this unknown width. Here is…

Joe Ralphin
- 37
- 1
- 5
0
votes
3 answers
Draggable Scrollable Sheet becomes unscrollable when we set it's child to a column
I have the following code for a DraggableScrollableSheet in Flutter.
DraggableScrollableSheet(
builder: (BuildContext context, ScrollController scrollController) {
return ClipRRect(
borderRadius: BorderRadius.only(
topLeft:…

CodeR_Ax20
- 91
- 1
- 8
0
votes
4 answers
Flutter. Column mainAxisAlignment spaceBetween not working
I need to position the widgets at the top and bottom, as in this picture.
For this I am using the following structure:
Column(
mainAxisAlignment: MainAxisAlignment.spaceBetween,
children:[
Column(
…

testivanivan
- 967
- 13
- 36
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