diff options
author | uvok | 2025-07-22 17:00:51 +0200 |
---|---|---|
committer | uvok | 2025-07-22 17:00:51 +0200 |
commit | c1e2cee9b109650c0f763ddcdf688a46b40563bb (patch) | |
tree | c621b4420927d5cf506af712b8c3b6edd8368a0b /lib | |
parent | 69e0259b8b3059822d40a1ed7ab349a646786bb8 (diff) |
Move item count up
Diffstat (limited to 'lib')
-rw-r--r-- | lib/main.dart | 3 |
1 files changed, 1 insertions, 2 deletions
diff --git a/lib/main.dart b/lib/main.dart index 23721ac..f04c381 100644 --- a/lib/main.dart +++ b/lib/main.dart @@ -219,7 +219,7 @@ class _MyHomePageState extends State<MyHomePage> { ), Expanded( child: ListView.separated( - //itemCount: scanResults.length, + itemCount: scanResults.length, itemBuilder: (context, index) { if (index >= scanResults.length) return null; final ScanResult result = scanResults[index]; @@ -246,7 +246,6 @@ class _MyHomePageState extends State<MyHomePage> { separatorBuilder: (BuildContext context, int index) { return Divider(); }, - itemCount: scanResults.length, ), ), ], |