Skip to main content
Filter by
Sorted by
Tagged with
0 votes
1 answer
129 views

I have an app where audio recordings are stored as MP3 binary blobs in my database. I retrieve these recordings via an API as base64-encoded strings or binary streams. I want to display the actual ...
Marcel R. G. Berger's user avatar
2 votes
1 answer
51 views

im having an issue with the Listview Builder in Flutter. Im using dismissible to remove items from that listview. When removing an item, the other items don't animate correctly. The text "goes up&...
Mathis Kirchner's user avatar
0 votes
1 answer
65 views

I'm experiencing a Flutter issue specific to iOS when using the native swipe-back gesture to return to a previous screen that contains a ListView. On returning, the ListView does not respond to the ...
Hamza Rasheed's user avatar
0 votes
0 answers
32 views

hey I get Null Error when I try to edit after deleting an Item in HiveDB on swipe in listview import 'package:notes_app/HiveDB/hive_crud.dart'; import 'package:notes_app/Model/notes_model.dart'; ...
appdev's user avatar
  • 15
1 vote
1 answer
67 views

The issue where the position of the displayed content on the page changes when the Flutter scrolling component slides down or up to load and add data When I swipe the page to load data, the content ...
Gasong Pon's user avatar
0 votes
0 answers
52 views

I'm working on a Flutter app where I have a TabBarView under a TabBar to display different lists. Each list dynamically generates HistoryCard widgets based on a mock data source. However, when the ...
CeleX's user avatar
  • 1
0 votes
2 answers
37 views

How would one go about decoding a JSON String that looks like this and turn it into a Expansion Tile List with the dropdown of each tile being the "ownerhistory" of each tile: [ { &...
DrakeJest's user avatar
  • 197
2 votes
0 answers
52 views

Here is the ListView.builder widget where UI implementation called trying to move the ListView.builder to a specific index, but it only worked when I didn't interact with the scroll manually; ...
Mussadaq Ahmad Jamil's user avatar
0 votes
1 answer
60 views

I have been using the flutter package Side Sheet, inside the side sheet I have a Listview.builder, which I want to make scroll horizontally (located towards bottom of code snippet), I have given a ...
Code Ratchet's user avatar
  • 6,079
4 votes
0 answers
214 views

I want to create Horizontal V shaped List View just like in the following image , it will scroll from right to left and top to bottom. The labels are index of each container that will be inside it. ...
Ramji's user avatar
  • 60
0 votes
1 answer
56 views

I have this seperate page that I navigate to it and I am testing my Question widget with a ListView.builder(). The error occurs when I navigate to the page, at ListView.builder(). I am new to ListView/...
JellyMiner's user avatar
0 votes
1 answer
53 views

There is pagination for that view but when I'm selecting to see 1000 records in a one page, there is jank while scrolling. I have listview builder for that ,is there any approach in which show table ...
Vaibhav Sharma's user avatar
0 votes
1 answer
64 views

Stack Widget in Listview, Unable to display completely, here is my code class MyHomePage extends StatelessWidget { const MyHomePage({super.key}); @override Widget build(BuildContext context) { ...
yana mach's user avatar
0 votes
1 answer
97 views

I need to have a list of elements. Each element will have a list (for example, parent comment and its list of replies). But in this case I need to provide shrinkWrap: true or to provide Container with ...
BlackRose's user avatar
1 vote
1 answer
65 views

I have dynamic list have multi value as dynamic number needs to convert to string like below example. when I test it in dartpad it will work only if I have one entry in (listN) but when I have multi ...
CallMe's user avatar
  • 13
0 votes
1 answer
75 views

I recently updated my Flutter SDK to the latest version and noticed an unusual behavior with my ListView. After the list finishes scrolling, the list items move up and down slightly, which wasn't ...
Chamalka Gunawardena's user avatar
0 votes
1 answer
116 views

I use just audio package and set audio inside listview.builder and I click first button the audio is play but when I scroll the list the audio automatically play and is not playing correct index by ...
umer developer's user avatar
0 votes
1 answer
76 views

I have a widget that returns a ListView. When an item in the ListView is selected, I show the CircularProgressIndicator on the screen while downloading the data for this item, and after the download ...
Aaydin's user avatar
  • 597
1 vote
2 answers
78 views

class ListNumbersPage extends GetView<MyController> { final colors = [ Colors.red, Colors.green, Colors.pinkAccent, Colors.blue, Colors.grey, Colors.cyan, ]; final ...
Pankaj Kumar Tungaria's user avatar
1 vote
2 answers
318 views

On my screen I need to display a ListView inside an other ListView. The screen can be summarized like this: @override Widget build(BuildContext context) { return Scaffold( appBar: ...
giordy16's user avatar
  • 383
0 votes
1 answer
49 views

I am getting the following lint on Text("The color is " + item['color']) "Use interpolation to compose strings and values. (Documentation) Try using string interpolation to build the ...
Tom's user avatar
  • 427
-1 votes
1 answer
387 views

I'm facing a challenge in my Flutter application where I need to efficiently manage memory usage while working with very large datasets in a ListView. Imagine the following scenario: I have a remote ...
actuallynoneed's user avatar
0 votes
1 answer
21 views

I want this design enter image description here and almost i have made this design but the problem is with i'm unable to add scrolling in it ..if i'm not using the right approach then give me solution ...
Umair's user avatar
  • 5
0 votes
3 answers
622 views

Right now I am generating a List of ExpansionTiles using a ListView.builder. Each ExpansionTile can be expanded to view an additional list of items which is generated with a ListView.builder as well. ...
TheCoolest2's user avatar
0 votes
1 answer
74 views

In a flutter app, I have a FilledButton in a ListView widget and one outside the ListView. Both these Buttons are identical in terms of their code, they just live inside different parents: void main() ...
derdu's user avatar
  • 1

1
2 3 4 5
15