image_collapse 0.0.1 image_collapse: ^0.0.1 copied to clipboard
A flutter package which display the library collapse according to the number of images associated with hero animation ...
import 'package:flutter/material.dart';
import 'package:image_collapse/image_collapse.dart';
void main() {
runApp(MyApp());
}
class MyApp extends StatelessWidget {
@override
Widget build(BuildContext context) {
return MaterialApp(
title: 'Gallery Collapse',
theme: ThemeData(
primarySwatch: Colors.blue,
),
home: MyHomePage(title: 'Gallery Collapse'),
);
}
}
class MyHomePage extends StatefulWidget {
MyHomePage({Key? key, required this.title}) : super(key: key);
final String title;
@override
_MyHomePageState createState() => _MyHomePageState();
}
class _MyHomePageState extends State<MyHomePage> {
static const List<String> listOfUrls = [
"https://cosmosmagazine.com/wp-content/uploads/2020/02/191010_nature.jpg",
"https://scx2.b-cdn.net/gfx/news/hires/2019/2-nature.jpg",
"https://isha.sadhguru.org/blog/wp-content/uploads/2016/05/natures-temples.jpg",
"https://cosmosmagazine.com/wp-content/uploads/2020/02/191010_nature.jpg",
"https://img.freepik.com/free-vector/hand-painted-watercolor-pastel-sky-background_23-2148902771.jpg?size=626&ext=jpg",
"https://png.pngtree.com/thumb_back/fh260/background/20200714/pngtree-modern-double-color-futuristic-neon-background-image_351866.jpg",
"https://cdn.pixabay.com/photo/2016/06/02/02/33/triangles-1430105__480.png",
];
@override
Widget build(BuildContext context) {
return Scaffold(
appBar: AppBar(
centerTitle: true,
backgroundColor: Color(0xff374056),
title: Text(widget.title),
),
body: Center(
child: ImageCollapse(
imageUrls: listOfUrls,
),
),
);
}
}