Baseflow / Baseflow/flutter_cached_network_image
Crash on iOS 'io.flutter.1.ui', stop reason = EXC_BAD_ACCESS (code=257, address=...)
- Dominant language
- Dart
- Stars
- 2.6k
- Forks
- 731
- Avg merge
- 3d 9h
- Merged PRs (30d)
- 1
Description
## 🐛 Bug Report
TLDR: A ListView.builder showing a bunch of images . -> Scroll very fast -> Crash on iOS device
My App has a list of cells containing images and it crashes on iOS when the user scrolls through the list very fast. I can reproduce this crash with a mimimal example (see code) on my iphone 13. It looks like the app crashes when images are stored on the device. It seems to happen only when i clear the cache on app start. If I scroll through the list slower so that all images get cached before the app crashes, I cannot crash it anymore afterwards.
Even if I filter out all Images that are larger than 1MB I can crash the app.
This guy seems to have the same issue:
#635
Console log:
* thread #8, name = 'io.flutter.1.ui', stop reason = EXC_BAD_ACCESS (code=257, address=0x106b08041)
frame #0: 0x0000000106b08041
-> 0x106b08041: udf #0x9601
0x106b08045: .long 0x41000000 ; unknown opcode
0x106b08049: .long 0x0106b080 ; unknown opcode
0x106b0804d: ldr w0, 0x106b0804d
Target 0: (Runner) stopped.
```
import 'package:cached_network_image/cached_network_image.dart';
import 'package:flutter/material.dart';
import 'package:flutter/services.dart';
import 'package:flutter_cache_manager/flutter_cache_manager.dart';
import 'package:http/http.dart' as http;
List urls = [];
void main() async {
WidgetsFlutterBinding.ensureInitialized();
await DefaultCacheManager().emptyCache();
final text = await rootBundle.loadString("assets/urls.txt");
urls = text.split("\n");
List r = [];
for (var url in urls) {
final http.Response responseData = await http.get(Uri.parse(url));
var c = responseData.contentLength;
print("${c! / 1000} kb - ${url}");
if (c / 1000 < 1000) {
r.add(url);
}
}
urls = r;
runApp(const MyApp());
}
class MyApp extends StatelessWidget {
const MyApp({Key? key}) : super(key: key);
// This widget is the root of your application.
@override
Widget build(BuildContext context) {
return MaterialApp(
title: 'Flutter Demo',
theme: ThemeData(
primarySwatch: Colors.blue,
),
home: const MyHomePage(title: 'Flutter Demo Home Page'),
);
}
}
class MyHomePage extends StatefulWidget {
const MyHomePage({Key? key, required this.title}) : super(key: key);
final String title;
@override
State createState() => _MyHomePageState();
}
class _MyHomePageState extends State {
@override
Widget build(BuildContext context) {
return Scaffold(
appBar: AppBar(
title: Text(widget.title),
),
body: ListView.builder(
addAutomaticKeepAlives: false,
itemBuilder: (ctx, index) {
return Center(
child: SizedBox(
width: 130,
height: 100,
child: CachedNetworkImage(
maxHeightDiskCache: 1000,
maxWidthDiskCache: 1000,
imageUrl: urls[index],
fit: BoxFit.cover,
),
),
);
},
itemCount: urls.length,
),
);
}
}
```
Urls used in this example (urls.txt)
```
https://img.chefkoch-cdn.de/rezepte/3530721527081655/bilder/1365695/crop-960x540/nuernberger-rostbratwurst-schupfnudel-pfanne-mit-senf-rahm-kohlrabi.jpg
https://img.chefkoch-cdn.de/rezepte/3530721527081655/bilder/1365695/crop-960x540/nuernberger-rostbratwurst-schupfnudel-pfanne-mit-senf-rahm-kohlrabi.jpg
https://img.chefkoch-cdn.de/rezepte/3530721527081655/bilder/1365695/crop-960x540/nuernberger-rostbratwurst-schupfnudel-pfanne-mit-senf-rahm-kohlrabi.jpg
https://storage.googleapis.com/mealmate-content/recipes/YnBhddgJUTsf5cij8bEZ/42cfe070-6d00-11ec-a758-2d63bcf89691
https://img.hellofresh.com/f_auto,fl_lossy,h_640,q_auto,w_1200/hellofresh_s3/image/chilinudeln-in-erdnusssosze-ddd515fb.jpg
https://ellerepublic.de/wp-content/uploads/2020/04/Pastinaken-Apfel-Salat-Rezept-2020-3.jpg
https://www.diejungskochenundbacken.de/wp-354a7-content/uploads/2018/11/Zim-Torte-mW-8.jpg
https://knusperstuebchen.net/wp-content/uploads/2016/12/Orientalische-Dattel-Plaetzchen-1.jpg
https://byanjushka.com/wp-content/uploads/2019/11/vegane-zimtsterne-1.jpg
https://www.gluecksgenuss.de/wp-content/uploads/2016/12/zimtsterne1.jpg
https://firebasestorage.googleapis.com/v0/b/einkaufszettel-74e23.appspot.com/o/recipes%2FMHdQ00NgNBJrdUQ93Elh%2Fe2bb3110-4ef7-11ec-b95f-138b3191ec02?alt=media&token=ebb695b8-3879-4e32-82c9-79d992ace7a3
https://www.ploetzblog.de/wp-content/uploads/2020/01/20200125_90.jpg
https://www.oetker.de/Recipe/Recipes/oetker.de/de-de/baking/image-thumb__30279__RecipeDetail/apfel-streusel-kuchen-aus-der-springform~-~636w.jpg
https://www.gaumenfreundin.de/wp-content/uploads/2016/08/rewe_kuerbis08_NEU.jpg
https://www.malteskitchen.de/wp-content/uploads/2017/06/blattsalat-avocado-himbeeren-neu-3128.jpg
https://www.kuechengoetter.de/uploads/media/630x630/02/134482-himbeer-schokoladen-torte-0.jpg?v=1-14
https://www.oetker.de/Recipe/Recipes/oetker.de/de-de/baking/image-thumb__106676__RecipeDetail/waffeln-ohne-ei.jpg
https://www.springlane.de/magazin/wp-content/uploads/2016/01/Vegane_Marmor_Muffins_23392_Featured.jpg
https://www.oetker.de/Recipe/Recipes/oetker.de/de-de/baking/image-thumb__32974__RecipeDetail/vegane-apfel-knusper-muffins.jpg
https://www.oetker.de/Recipe/Recipes/oetker.de/de-de/baking/image-thumb__68763__RecipeDetail/veganer-nusskuchen.jpg
https://firebasestorage.googleapis.com:443/v0/b/einkaufszettel-74e23.appspot.com/o/recipes%2FjkV4RrPKfRdlj3p8C7G6%2Fe85d1010-e256-11eb-9b02-17ca1f5e04bc?alt=media&token=a03ddb15-e0c1-4ed8-8680-01c57b2f61af
https://image.essen-und-trinken.de/11834382/t/tx/v9/w1440/r1/-/schoko-cashew-cookies-ec8145c0df4650657fd669d65b30fed0-schoko-cashew-cookies-jpg--9788-.jpg
https://images.eatsmarter.de/sites/default/files/styles/max_size/public/kuerbiskekse-668323.jpg
https://firebasestorage.googleapis.com/v0/b/einkaufszettel-74e23.appspot.com/o/recipes%2F4Rpb5pkSbS2H9skf4N9n%2Fac569020-e24f-11eb-87d9-1188c0d9b221?alt=media&token=fc370265-3027-4135-9569-a7af6f8ea049
https://veganheaven.de/wp-content/uploads/2019/07/Tofu-Marinade-13.jpg
https://ellerepublic.de/wp-content/uploads/2017/05/Sommer-Nudelsalat-mit-geroestetem-Gemuese-1.jpg
https://www.waseigenes.com/wp-content/uploads/2020/05/Rezept-Rhabarber-Blechkuchen-mit-weisser-Schokolade-und-Mandelstiften-waseigenes.com-4.jpg
https://kochkarussell.com/wp-content/uploads/2017/01/20-Minuten-Rote-Linsen-Bolognese-1.jpg
https://www.edeka.de/media/01-rezeptbilder/rezeptbilder-u-z/rez-edeka-vegane-muesli-riegel-rezept-u-z.jpg?imwidth=640&imdensity=1
https://www.kuechengoetter.de/uploads/media/630x630/08/71828-kernige-muesliriegel.jpg?v=2-19
https://www.springlane.de/magazin/wp-content/uploads/2018/11/Cranberry-Zimt-Müsliriegel-aus-dem-Dörautomaten_featured.jpg
https://www.kuechengoetter.de/uploads/media/630x630/05/78345-osterlamm-mit-kokos.jpg?v=2-19
https://www.emmaslieblingsstuecke.com/wp-content/uploads/2019/11/Streusel_Quark_Kuchen_Mohn_Kirschen-6-2.jpg
https://i2.wp.com/baketotheroots.de/wp-content/uploads/2015/03/SQ_150313_MohnZopf_0004_00-300x300.jpg?resize=300%2C300
https://firebasestorage.googleapis.com/v0/b/einkaufszettel-74e23.appspot.com/o/recipes%2FRi1shjhLQSJXQRuVVEP3%2Fcfe3ed90-e195-11eb-9f4b-09b281e096ed?alt=media&token=71a538a9-13b0-4b46-9ce0-887d650e209c
https://firebasestorage.googleapis.com/v0/b/einkaufszettel-74e23.appspot.com/o/recipes%2Fc598b7e0-83ed-11eb-8f18-6fd6a60e9036%2F26f624e0-83ef-11eb-a9cf-c5829f227ae8%7D?alt=media&token=68e286ce-e443-43f0-9479-53a2aa04e71b
https://images.ctfassets.net/nf38yhm0afx3/4wgZ98A9ugKySaqcw4MqK/428935cfc36f22fcd1a956ac28329cf8/spaghettibolognese-13.jpg?w=2000&fm=jpg
https://firebasestorage.googleapis.com/v0/b/einkaufszettel-74e23.appspot.com/o/recipes%2Fc5099000-678d-11eb-ab71-03a006442adf%2Fdb423110-678d-11eb-882a-d3f87a77261f%7D?alt=media&token=e64d2dc3-1b5a-49ef-aa85-03f50e7454f1
https://www.springlane.de/magazin/wp-content/uploads/2015/10/Amaretto-Mohn-Eis_featured.jpg
https://firebasestorage.googleapis.com/v0/b/einkaufszettel-74e23.appspot.com/o/recipes%2Feead0da0-5ef1-11eb-afff-eb270205a57c%2Fa6187ea0-7d9e-11eb-9ab4-014a692859db%7D?alt=media&token=64082f87-86d5-42e4-aada-229b106b7d96
https://www.kuechengoetter.de/uploads/media/630x630/09/5519-pad-thai.jpg?v=1-0
https://www.zungenzirkus.de/wp-content/uploads/2017/10/Zimthaselnusskuchen.jpg
https://www.maraswunderland.de/wp-content/uploads/2013/12/IMG_8495_MK.png
https://images.eatsmarter.de/sites/default/files/styles/max_size/public/matcha-pistazien-sterne-656682.jpg
https://image.essen-und-trinken.de/11834054/t/40/v9/w1440/r1/-/408734--9624-.jpg
https://zimtkeksundapfeltarte.com/wp-content/uploads/2020/11/Gebrannte-Mandeln-ZimtkeksundApfeltarte.com-Andrea-Natschke-Hofmann-Foodblog-Foodfotografie-Foodstyling-Fotografie-3-von-10-225x225.jpg
https://img.hellofresh.com/f_auto,fl_lossy,h_640,q_auto,w_1200/hellofresh_s3/image/chilinudeln-in-erdnusssosze-ddd515fb.jpg
https://ellerepublic.de/wp-content/uploads/2019/09/Ofen-Geroestete-Kuerbis-Risotto-Rezept-2019-3.jpg
https://ahalnisweethome.de/backblog/wp-content/uploads/2018/11/DSCF8901.jpg
https://lafer.de/media/image/70/e9/bb/Schokoladen_Soufflee017_bearbeitet_4851.jpg
https://knusperstuebchen.net/wp-content/uploads/2019/09/Apfeltarte-mit-Salzkaramell-8.jpg
https://firebasestorage.googleapis.com/v0/b/einkaufszettel-74e23.appspot.com/o/recipes%2Fa23ccb90-96e2-11ea-f231-a1740a6d9894%2Fimg_0?alt=media&token=f183c179-f347-4a30-b837-66d0c0896df8
https://edeka.de/media/01-rezeptbilder/rezeptbilder-q-t/rez-edeka-suesses-raclette-rezept-q-t.jpg?imwidth=640&imdensity=1
https://trickytine.com/wp-content/uploads/2018/10/Bergkaese-Risotto-1-von-1-1024x1534.jpg
https://firebasestorage.googleapis.com/v0/b/einkaufszettel-74e23.appspot.com/o/recipes%2F3259ebf0-f4c5-11ea-9b0e-eb8c02247149%2F882e45d0-f4c5-11ea-ba7a-f72abd1d95e2%7D?alt=media&token=776d213b-b77f-4830-b545-4306b72c89b1
https://firebasestorage.googleapis.com/v0/b/einkaufszettel-74e23.appspot.com/o/recipes%2FsFmeqls5DD9W65bVx4tI%2Fe89db2e0-ded9-11ea-9e85-236a02544e9d%7D?alt=media&token=497a8d28-24d8-42fb-88a5-d39d5c7989bc
https://www.springlane.de/magazin/wp-content/uploads/2016/04/Paprika-Salat-mit-Pinienkernen-und-Kapern_featured.jpg
https://schmecktwohl.de/wp-content/uploads/2016/06/Brokkolisalat-mit-Kichererbsen-und-Pfirsichvinaigrette-4.jpg
https://firebasestorage.googleapis.com/v0/b/einkaufszettel-74e23.appspot.com/o/recipes%2F7bb158e0-ad5f-11ea-d4a3-abed58f47643%2Fa2ee6440-e5f2-11ea-a658-59dc9a3be513%7D?alt=media&token=a65f7068-69c3-4889-a337-9f4cde3537a3
https://www.bakingbarbarine.at/wp-content/uploads/2018/04/Rhabarber-Topfen-Schiffchen-18.jpg
https://knusperstuebchen.net/wp-content/uploads/2017/04/Rhabarber-Griess-Tarte-1.jpg
https://firebasestorage.googleapis.com/v0/b/einkaufszettel-74e23.appspot.com/o/recipes%2FJPnLyrswZ08Oegg3amOL%2Fimg_0?alt=media&token=9e665326-5725-4176-b492-facf76bc4ea9
https://firebasestorage.googleapis.com/v0/b/einkaufszettel-74e23.appspot.com/o/recipes%2Fce402a20-91d3-11ea-c8ff-8150372a43da%2Fimg_0?alt=media&token=8ca329f3-4d7f-4bb5-90d5-a4257c3e8923
https://static01.nyt.com/images/2019/04/10/dining/09pancakerex/merlin_152093436_8efda54f-e29a-40c5-92b3-fdbcbe490277-articleLarge.jpg
https://www.gourmetguerilla.de/wp-content/uploads/2017/01/Spicy-15-Minuten-Suesskartoffelsuppe-mit-Erdnuss-und-Paprika-GourmetGuerilla.de-2327.jpg
https://img.chefkoch-cdn.de/rezepte/2786421430769301/bilder/799915/crop-960x540/vegetarisches-fruehlingspfaennchen-mit-feta-kaese.jpg
https://www.springlane.de/magazin/wp-content/uploads/2015/03/Tofu-im-Sesam-Mantel-mit-Pak-Choy_featured.jpg
https://babyrockmyday.com/wp-content/uploads/2020/02/2020_Bakewell_18-scaled.jpg
https://firebasestorage.googleapis.com/v0/b/einkaufszettel-74e23.appspot.com/o/recipes%2Fa415b2a0-7988-11ea-b1bf-63d25ce80ba2%2Fimg_0?alt=media&token=09b17987-77a9-423e-8851-7eee7f0cc3de
https://www.edeka.de/media/01-rezeptbilder/rezeptbilder-i-p/rez-edeka-kichererbsencurry-rezept-i-p.jpg?imwidth=640&imdensity=1
https://www.eat-this.org/wp-content/uploads/2018/06/gebackene-falafel-mit-tahin-zitronen-joghurt-2.jpg
https://www.eat-this.org/wp-content/uploads/2017/11/veganer-rotweinkuchen-mit-lebkuchengewuerz-3-2.jpg
https://www.kuechengoetter.de/uploads/media/630x630/01/12201-mohn-kaese-kuchen-0.jpg?v=1-0
https://www.springlane.de/magazin/wp-content/uploads/2019/05/Spinatauflauf_87989_Featured.jpg
https://knusperstuebchen.net/wp-content/uploads/2016/03/Mohn-Streusel-Quark-Kuchen-Poppy-Seed-Crumble-Cheesecake.jpg
https://linalsbackhimmel.de/wp-content/uploads/2019/07/Schoko-Cashew-Cookies-1.jpg
https://knusperstuebchen.net/wp-content/uploads/2020/01/Quarkwaffeln-RezeptDSC_8609.jpg
https://images.eatsmarter.de/sites/default/files/styles/facebook/public/vegetarisches-nasi-goreng-5979.jpg
https://www.springlane.de/magazin/wp-content/uploads/2015/09/gefuellte-Suesskartoffel-mit-Kichererbsen-und-Spinat_featured.jpg
https://firebasestorage.googleapis.com/v0/b/einkaufszettel-74e23.appspot.com/o/recipes%2FN3EcOu1RMuwilSIzJavz%2Fimg_0?alt=media&token=cb20f137-af08-4144-b45e-04a1f763d12c
https://firebasestorage.googleapis.com/v0/b/einkaufszettel-74e23.appspot.com/o/recipes%2F2a6896f0-289f-11ea-8af2-67547fa98ff9%2Fimg_0?alt=media&token=b9381e5b-23ad-4a10-9ad1-aab6f89b1327
https://www.edeka.de/media/01-rezeptbilder/rezeptbilder-i-p/rez-edeka-kuerbiscremesuppe-rezept-i-p.jpg?imwidth=640&imdensity=1
https://firebasestorage.googleapis.com/v0/b/einkaufszettel-74e23.appspot.com/o/recipes%2FUkR7ksbQjrWF0gjkVWuO%2Fimg_0?alt=media&token=a588352b-46d7-4a09-a01b-4895895d803d
https://firebasestorage.googleapis.com/v0/b/einkaufszettel-74e23.appspot.com/o/recipes%2F8f89f460-256c-11ea-d511-e1b7ceb15e6d%2Fimg_0?alt=media&token=2b6c9008-36ab-432d-8621-d0471524b95c
https://firebasestorage.googleapis.com:443/v0/b/einkaufszettel-74e23.appspot.com/o/recipes%2FUs8Adae8iyNN6SouRwys%2F4f2cb450-0bc7-11ec-91d1-3b539a9caede?alt=media&token=0e3ed6ec-611b-43ff-a6ee-82c8b8c02ce6
https://firebasestorage.googleapis.com/v0/b/einkaufszettel-74e23.appspot.com/o/recipes%2Fd529a0b0-0d3e-11ea-b99d-b96f68c37f87%2Fimg_0?alt=media&token=708e179c-68a1-4282-b6c8-0af75881aa67
https://firebasestorage.googleapis.com/v0/b/einkaufszettel-74e23.appspot.com/o/recipes%2F5df433c0-0d3e-11ea-d596-c92d2c787401%2Fimg_0?alt=media&token=0f514e9a-e504-49b6-94e2-ba0122f02505
https://firebasestorage.googleapis.com/v0/b/einkaufszettel-74e23.appspot.com/o/recipes%2Ffd2e4bd0-0d3c-11ea-fa57-3f985a70a43c%2Fimg_0?alt=media&token=1b67cf33-0e93-4477-b453-f9b389e7ba3a
https://www.oetker.de/Recipe/Recipes/oetker.de/de-de/baking/image-thumb__30279__RecipeDetail/apfel-streusel-kuchen-aus-der-springform~-~636w.jpg
https://firebasestorage.googleapis.com/v0/b/einkaufszettel-74e23.appspot.com/o/recipes%2F0868e0a0-f7d0-11e9-b6a8-71813322ab8c%2Fimg_0?alt=media&token=73d4c764-0a07-41ca-88a1-37b1c2e81003
https://firebasestorage.googleapis.com/v0/b/einkaufszettel-74e23.appspot.com/o/recipes%2FzcjwRt6JvBKWGJIBsNj2%2Fimg_0?alt=media&token=4204c458-f304-4bb2-9408-536c6c4f626a
https://img.bildderfrau.de/img/incoming/crop216336703/1459854672-w1200-cv3_2-q85-dc1/Paprikatarte.jpg
https://images.lecker.de/,id=8e5a4f16,b=lecker,w=610,cg=c.jpg
https://images.lecker.de/,id=ab70c47f,b=lecker,w=610,cg=c.jpg
https://www.springlane.de/magazin/wp-content/uploads/2015/08/Pikantes-Suesskartoffel-Risotto-mit-Spinat_featured.jpg
https://www.springlane.de/magazin/wp-content/uploads/2014/08/Ratatouille-Gratin-featured.jpg
https://firebasestorage.googleapis.com/v0/b/einkaufszettel-74e23.appspot.com/o/recipes%2FmIhB2yiilkMZUQoPGVA1%2Fimg_0?alt=media&token=cdb7c0c9-b8e0-4b1e-b6e7-5d332529ccb4
https://images.eatsmarter.de/sites/default/files/styles/facebook/public/risotto-mit-blumenkohl-449372.jpg
https://firebasestorage.googleapis.com/v0/b/einkaufszettel-74e23.appspot.com/o/recipes%2F8S4DKirsVKe1lPO0jkCe%2Fimg_0?alt=media&token=93d5bfb2-7010-40d4-ae8f-a282c4b07987
https://www.springlane.de/magazin/wp-content/uploads/2015/05/Erdbeersalat_featured1.jpg
https://www.springlane.de/magazin/wp-content/uploads/2019/02/Veganes_Gemüsecurry_85088_featured.jpg
https://www.springlane.de/magazin/wp-content/uploads/2015/09/Pfannkuchen-Grundrezept_featured1.jpg
https://www.springlane.de/magazin/wp-content/uploads/2016/11/Gebackener-Feta_featured.jpg
https://firebasestorage.googleapis.com/v0/b/einkaufszettel-74e23.appspot.com/o/recipes%2FbWNRMeDiJLKAulHorAkr%2Fimg_0?alt=media&token=b2350b7e-95c8-40a2-bd4f-984a1155716b
https://www.springlane.de/magazin/wp-content/uploads/2016/09/Apfel-Walnuss-Kuchen_featured.jpg
https://firebasestorage.googleapis.com/v0/b/einkaufszettel-74e23.appspot.com/o/recipes%2FlQwdKhoCcA357yK8u0Rb%2F75266f50-7d9e-11eb-a33d-d7e64233f30e%7D?alt=media&token=a4dfbf3d-b002-4b77-95d9-8c28c5815165
https://www.springlane.de/magazin/wp-content/uploads/2018/02/Strawberry-Cheesecake-Eis_77582_featured.jpg
https://firebasestorage.googleapis.com/v0/b/einkaufszettel-74e23.appspot.com/o/recipes%2FU8XhYq6ju4x4kGQeSRRH%2Fimg_0?alt=media&token=5bcaa347-51ef-4e1e-bd17-197dea058e95
https://images.eatsmarter.de/sites/default/files/styles/max_size/public/ricotta-tarte-mit-gruenem-spargel-und-tomaten-456616.jpg
https://www.springlane.de/magazin/wp-content/uploads/2016/07/Vegetarischer-Suesskartoffelauflauf_featured.jpg
https://www.springlane.de/magazin/wp-content/uploads/2015/07/Vollkorn-Spaghetti-mit-Spinat-Pesto_MAG.jpg
https://www.springlane.de/magazin/wp-content/uploads/2015/04/Spaghetti_mit_Baerlauch_FEATURED.jpg
https://www.springlane.de/magazin/wp-content/uploads/2016/07/Schnelle-Mandel-Pasta-mit-Feta-und-Rucola_featured.jpg
https://www.springlane.de/magazin/wp-content/uploads/2016/10/Linguini-mit-Walnuessen-getrockneten-Tomaten-und-Parmesan_featured.jpg
https://www.springlane.de/magazin/wp-content/uploads/2015/02/Salat-mit-gegrillter-Zucchini_featured.jpg
https://www.springlane.de/magazin/wp-content/uploads/2014/01/Mixsalat_featured.jpg
https://www.springlane.de/magazin/wp-content/uploads/2016/11/Auberginensalat-mit-Hummus_featured.jpg
https://www.springlane.de/magazin/wp-content/uploads/2017/06/Ziegenkäse-Crostini-mit-Brombeeren_featured.jpg
https://www.springlane.de/magazin/wp-content/uploads/2017/09/Wirsing-Walnuss-Pasta-in-cremiger-Mascarponesauce_70792_featured.jpg
https://www.springlane.de/magazin/wp-content/uploads/2017/09/Ofen-Pfannkuchen-mit-Ricotta-Spinat_70859_featured-1.jpg
https://www.springlane.de/magazin/wp-content/uploads/2017/06/Glasierte-Honig-Aubergine-mit-Dip_featured.jpg
https://www.springlane.de/magazin/wp-content/uploads/2017/06/Erdnuss-Nudel-Bowl_featured.jpg
https://www.springlane.de/magazin/wp-content/uploads/2017/06/Schneewittchen-Salat_featured.jpg
https://www.springlane.de/magazin/wp-content/uploads/2017/08/Dinkel-Crêpes-mit-Pfirsichen-und-Gorgonzola_Featured_69157.jpg
https://www.springlane.de/magazin/wp-content/uploads/2017/09/Zucchininudeln-mit-Pfirsich-und-Mozzarella_Featured_70091.jpg
https://www.springlane.de/magazin/wp-content/uploads/2017/11/Grilled-Cheese-mit-Knusper-Aubergine_Featured_74491.jpg
https://www.springlane.de/magazin/wp-content/uploads/2018/01/Spinatsalat-mit-Grillgemüse-und-Halloumi_76699_featured.jpg
https://images.lecker.de/,id=fe71db0e,b=lecker,w=610,cg=c.jpg
https://www.kuechengoetter.de/uploads/media/1000x524/03/24173-walnuss-lebkuchenecken.jpg?v=1-0
https://www.springlane.de/magazin/wp-content/uploads/2015/12/Bratapfel_featured.jpg
https://kochkarussell.com/wp-content/uploads/2016/12/Wintersalat-mit-Persimon-Granatapfel-und-Camembert.jpg
https://images.lecker.de/,id=e9dc8314,b=lecker,w=610,cg=c.jpg
https://images.lecker.de/,id=b204c662,b=lecker,w=610,cg=c.jpg
https://www.springlane.de/magazin/wp-content/uploads/2015/06/Vegetarischer_Burger_Avocado_Mango_Topping_FEATURED.jpg
https://www.springlane.de/magazin/wp-content/uploads/2015/05/Erbsen-Lauch-Bratlinge-mit-gruenem-Spargel_featured.jpg
https://www.springlane.de/magazin/wp-content/uploads/2016/04/Rucola-mit-gegrilltem-Pfirsich-Feta-Suesskartoffeln_featured.jpg
https://www.springlane.de/magazin/wp-content/uploads/2015/01/S00157_MAG_US_W7_2015.jpg
https://www.springlane.de/magazin/wp-content/uploads/2016/10/Kuerbis-Kokos-Eis_featured.jpg
https://www.springlane.de/magazin/wp-content/uploads/2018/01/Gurken-Avocado-Salat-mit-Minze-und-Feta_Featured_76697.jpg
https://www.malteskitchen.de/wp-content/uploads/2017/05/brot-ziegenfrischkäse-nektarinen-pistazien-02.jpg
```
### Reproduction steps
- run the app
- after app start scroll down as fast as you can, if you reached the bottom scroll back top
- the app should crash on iOS devices
### Configuration
[✓] Flutter (Channel stable, 2.8.1, on macOS 11.6 20G165 darwin-x64, locale de-DE)
[!] Android toolchain - develop for Android devices (Android SDK version 32.0.0)
✗ cmdline-tools component is missing
Run `path/to/sdkmanager --install "cmdline-tools;latest"`
See https://developer.android.com/studio/command-line for more details.
✗ Android license status unknown.
Run `flutter doctor --android-licenses` to accept the SDK licenses.
See https://flutter.dev/docs/get-started/install/macos#android-setup for more details.
[✓] Xcode - develop for iOS and macOS (Xcode 13.2.1)
[✓] Chrome - develop for the web
[✓] Android Studio (version 2020.3)
[!] Android Studio
✗ Unable to find bundled Java version.
[✓] IntelliJ IDEA Community Edition (version 2021.1.3)
[✓] VS Code (version 1.63.2)
[✓] Connected device (2 available)
**Version:** 3.2.0
**Platform:**
- [X] :iphone: iOS
- [ ] :robot: Android
Contributor guide
No contributing guide indexed for this repository
Assessment
This issue has not been assessed yet.