info_carousel 0.0.4 copy "info_carousel: ^0.0.4" to clipboard
info_carousel: ^0.0.4 copied to clipboard

discontinued
outdated

Tiki info carousel.

example/lib/main.dart

import 'package:flutter/material.dart';
import 'package:info_carousel/info_carousel.dart';

void main() {
  runApp(const MyApp());
}

class MyApp extends StatefulWidget {
  const MyApp({Key? key}) : super(key: key);

  @override
  State<MyApp> createState() => _MyAppState();
}

class _MyAppState extends State<MyApp> {

  @override
  Widget build(BuildContext context) {
    return MaterialApp(
        home: InfoCarousel(cards: []).carouselWidget()
    );
  }

}