Arkadaşlar merhaba. Visual studio code ve Genymotion kullanıyorum. Flutterde ne zaman image kodu kullansam emülatörüm donuyor ve kapatmak zorunda kalıyorum. Tam 2 gündür bu konuyla uğraşıyorum, yeni başladım hırslıyım ancak bu olay beni çok yordu. Image asset ve network hiçbiri çalışmıyor her defasında emülatörüm donuyor. Kodlarda bir hata olduğunu sanmıyorum, yine de koyacağım aşağı kısma. Aynı şekilde, pc özelliklerim de gayet yeterli oyun pcsi diye geçiyor zaten. Ne yapmam lazım lütfen birisi yardımcı olsun artık çok yoruldum….
import 'dart:math' as math;
import 'package:flutter/material.dart';
class CollapsableToolbarOrnek extends StatelessWidget {
@override
Widget build(BuildContext context) {
var sabitListeElemanlari = SliverChildListDelegate(
[
Container(
height: 100,
child: Text(
"Sabit Liste Elemanı 1",
style: TextStyle(
fontSize: 25,
fontWeight: FontWeight.bold,
),
textAlign: TextAlign.center,
),
color: Colors.green.shade200,
alignment: Alignment.center,
),
Container(
height: 100,
child: Text(
"Sabit Liste Elemanı 2",
style: TextStyle(
fontSize: 25,
fontWeight: FontWeight.bold,
),
textAlign: TextAlign.center,
),
color: Colors.green.shade300,
alignment: Alignment.center,
),
Container(
height: 100,
child: Text(
"Sabit Liste Elemanı 3",
style: TextStyle(
fontSize: 25,
fontWeight: FontWeight.bold,
),
textAlign: TextAlign.center,
),
color: Colors.green.shade400,
alignment: Alignment.center,
),
Container(
height: 100,
child: Text(
"Sabit Liste Elemanı 4",
style: TextStyle(
fontSize: 25,
fontWeight: FontWeight.bold,
),
textAlign: TextAlign.center,
),
color: Colors.green.shade500,
alignment: Alignment.center,
),
Container(
height: 100,
child: Text(
"Sabit Liste Elemanı 5",
style: TextStyle(
fontSize: 25,
fontWeight: FontWeight.bold,
),
textAlign: TextAlign.center,
),
color: Colors.green.shade600,
alignment: Alignment.center,
),
Container(
height: 100,
child: Text(
"Sabit Liste Elemanı 6",
style: TextStyle(
fontSize: 25,
fontWeight: FontWeight.bold,
),
textAlign: TextAlign.center,
),
color: Colors.green.shade700,
alignment: Alignment.center,
),
],
);
return CustomScrollView(
slivers: <Widget>[
SliverAppBar(
backgroundColor: Colors.cyan.shade700,
expandedHeight: 200,
floating: true,
pinned: false,
flexibleSpace: FlexibleSpaceBar(
title: Text("SliverAppBar"),
centerTitle: true,
background: Image(image: NetworkImage('https://images.unsplash.com/photo-1484589065579-248aad0d8b13?ixlib=rb-1.2.1&ixid=eyJhcHBfaWQiOjEyMDd9&auto=format&fit=crop&w=696&q=80'),fit: BoxFit.fill,),
),
),
SliverList(
delegate: sabitListeElemanlari,
),
],
);
}
}