gooey_carousel 0.1.2 gooey_carousel: ^0.1.2 copied to clipboard
Package to implements a gooey carousel created by gskinner team
import 'package:flutter/material.dart';
import 'demo.dart';
void main() => runApp(MyApp());
class MyApp extends StatelessWidget {
// This widget is the root of your application.
@override
Widget build(BuildContext context) {
return MaterialApp(
title: 'Gooey Carousel Example',
theme: ThemeData(
primarySwatch: Colors.blue,
),
home: GooeyEdgeDemo(),
);
}
}