app/lib/components/carousel.dart

68 lines
2 KiB
Dart
Raw Normal View History

2022-05-15 17:21:27 +02:00
import 'package:flutter/material.dart';
import 'package:carousel_slider/carousel_slider.dart';
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 = [
'assets/Carousel_1.webp',
'assets/Carousel_2.webp',
'assets/Carousel_3.webp'
];
class _CarouselState extends State<Carousel> {
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>[
Image.asset(item, fit: BoxFit.cover, width: 1000.0),
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(
2022-05-15 17:21:27 +02:00
options: CarouselOptions(
aspectRatio: 2.0,
enlargeCenterPage: true,
enableInfiniteScroll: false,
initialPage: 2,
autoPlay: true,
),
items: imageSliders,
2022-05-16 02:42:29 +02:00
);
2022-05-15 17:21:27 +02:00
}
}