app/lib/components/carousel.dart

88 lines
3.1 KiB
Dart
Raw Normal View History

import 'package:cached_network_image/cached_network_image.dart';
2022-05-15 17:21:27 +02:00
import 'package:carousel_slider/carousel_slider.dart';
2022-05-16 02:51:47 +02:00
import 'package:flutter/material.dart';
2022-05-15 17:21:27 +02:00
class Carousel extends StatefulWidget {
2022-05-16 02:42:29 +02:00
const Carousel({Key? key}) : super(key: key);
2022-05-15 17:21:27 +02:00
@override
State<Carousel> createState() => _CarouselState();
}
final List<String> imgList = [
'https://nekoya.moe.team/img/Carousel_1.webp',
'https://nekoya.moe.team/img/Carousel_2.webp',
'https://nekoya.moe.team/img/Carousel_3.webp',
2022-05-15 17:21:27 +02:00
];
class _CarouselState extends State<Carousel> {
final CarouselController _controller = CarouselController();
2022-05-15 17:21:27 +02:00
final List<Widget> imageSliders = imgList
2022-05-16 02:42:29 +02:00
.map(
(item) => Container(
margin: const EdgeInsets.all(5.0),
child: ClipRRect(
borderRadius: const BorderRadius.all(Radius.circular(5.0)),
child: Stack(
children: <Widget>[
CachedNetworkImage(
imageUrl: item,
placeholder: (context, url) => Container(
width: 1000,
decoration: const BoxDecoration(
image: DecorationImage(
2023-11-13 06:23:40 +01:00
image: AssetImage(
'assets/images/logo_transparent.webp'),
fit: BoxFit.contain)),
),
errorWidget: (context, url, error) =>
Image.asset('assets/images/image_error.webp'),
fadeOutDuration: const Duration(milliseconds: 5),
imageBuilder: (context, imageProvider) => Container(
width: 1000,
decoration: BoxDecoration(
image: DecorationImage(
image: imageProvider, fit: BoxFit.cover)),
),
),
2022-05-16 02:42:29 +02:00
Positioned(
bottom: 0.0,
left: 0.0,
right: 0.0,
child: Container(
decoration: const BoxDecoration(
gradient: LinearGradient(
colors: [
Color.fromARGB(200, 0, 0, 0),
Color.fromARGB(0, 0, 0, 0)
],
begin: Alignment.bottomCenter,
end: Alignment.topCenter,
2022-05-15 17:21:27 +02:00
),
),
2022-05-16 02:42:29 +02:00
padding: const EdgeInsets.symmetric(
vertical: 10.0, horizontal: 20.0),
child: const SizedBox(
width: 1.0,
)),
),
],
)),
),
)
2022-05-15 17:21:27 +02:00
.toList();
@override
Widget build(BuildContext context) {
2022-05-16 02:42:29 +02:00
return CarouselSlider(
2023-11-13 06:23:40 +01:00
items: imageSliders,
carouselController: _controller,
options: CarouselOptions(
aspectRatio: 2.0,
enlargeCenterPage: true,
enableInfiniteScroll: false,
initialPage: 2,
autoPlay: true));
2022-05-15 17:21:27 +02:00
}
}