Questions tagged [flutter-table]
33 questions
1
vote
1 answer
Flutter Table size failed
I need to create table which contains numbers and has square form.
The obvious solution would be to use widget Table, but...
When I use odd size it works, when I use even size it fails with rendering exception.
How to fix it?
void main() =>…

Serge Breusov
- 1,316
- 4
- 11
- 24
0
votes
1 answer
Using Provider package in flutter to listen to changes in flutter
In the job_details.dart file I want to listen to changes in the timestamp field when the start time or end time button is pressed and add the corresponding table row. But currently, I am getting value for my current job by listening to changes in my…

Manan Jain
- 43
- 1
- 5
0
votes
0 answers
How can I insert data from Excel sheet into a dynamic table in Flutter?
I am trying to create a project using file picker and excel packages in flutter that will allow us to pick a xlsx file and show the output in table format.
I am facing main problem of-
File picker chooses the correct file
It is also converted in…
0
votes
1 answer
how to make tables in flutter using API
I need to show my data's like as above image in flutter. I don't have idea about ,So anyone can help me to solve the problem.

Sakthivel k
- 9
- 4
0
votes
0 answers
add search and paginated in data table flutter
hi how can i add search and paginated in my Datatable2 in flutter
this is my code and data come from server and i have one request for search for exmaple when typing the name of person and send to server response is returned ..how can i This…

Iman Yarahmadi
- 54
- 7
0
votes
1 answer
How to remove card on flutter paginated table
Is there a possible way to remove card on paginated data table on flutter?

Paulo
- 594
- 3
- 10
0
votes
1 answer
flutter Table similar to shown image
I am new to Flutter. I have tried majority of data table structure but unable to create this functionality.
How to create similar table structure as shown in image with dynamic data?

user20076241
- 1
- 2
0
votes
0 answers
Flutter Paginated Datatable dynamic data from Json
I am new to flutter and I have learned paginated datatable from this. It works with static data but when I pass the json response and map with model class I am not getting the row data.
My json response: Link
I am getting the response but not set…

user20076241
- 1
- 2
0
votes
1 answer
how to add rows in columns flutter dynamically?
i need to pass data from AlertDialog to add rows in columns when press OK
and press Actions remove rows

Mohamed Faysal
- 11
- 4
0
votes
1 answer
Flutter to generate Word (.docx) with images inserted in Table
I am in process of making a Flutter App where we can select pictures and then generate a MS word file with selected images inserted in Table. Initially I though I will generate a pdf with table and convert to word and made progress on that. I…

Bimal
- 23
- 2
0
votes
0 answers
Expand flutter datatable row on click
I'm currently using a DataTable to display a summary of some data like this
DataTable(
showCheckboxColumn: false,
columns: columnNames,
rows: state.alerts.alerts
.map(
(alert) => DataRow(
cells: [
…

Darc
- 745
- 10
- 26
0
votes
2 answers
Best Way to Create Table In Flutter
Here i create table using using container and based on expanded using flex number to make header and the row relatable. I think this is not best way, but i don't know the other way how to create table like this, anyone can give me a suggestion?
Here…

Eko Muhammad Rilo Pembudi
- 245
- 3
- 12
0
votes
2 answers
Clikable Cell in flutter
Here is the image of my UI
I want to make each cell in 3rd column a clickable Cell that I can navigate from it to another page.

SH EB
- 61
- 8
0
votes
1 answer
How to display data from MySQL database in table format in flutter application?
This is my code. Here, I have used Listview.builder due to which whole data is displayed in 1 tablecell. What should I use at place of listview to display the data properly in different cells.
Or Any other way to display data dynamically from…

Mrunal Vaidhya
- 3
- 5
0
votes
1 answer
how to make table with freezed columns in flutter
Flutter table
how to make table with freezed columns with headers and footer in flutter
like this table example
I want the height of table to be dynamic depends on the table rows
and i want to put another table under this table

Ahmed
- 49
- 2
- 10