multi_expansion_card 0.0.3 copy "multi_expansion_card: ^0.0.3" to clipboard
multi_expansion_card: ^0.0.3 copied to clipboard

A customizable Flutter widget that allows multiple expansion tiles/cards with easy state management and styling.

example/main.dart

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

void main() {
  runApp(const MaterialApp(home: MyExample()));
}

class MyExample extends StatelessWidget {
  const MyExample({super.key});

  @override
  Widget build(BuildContext context) {
    return Scaffold(
      appBar: AppBar(title: const Text('Multiple Expansion Example')),
      body: const MultipleExpansionCard(
        titles: [
          Text('Card 1'),
          Text('Card 2'),
        ],
        childrens: [
          Text('Content 1'),
          Text('Content 2'),
        ],
      ),
    );
  }
}
2
likes
160
points
19
downloads

Documentation

API reference

Publisher

unverified uploader

Weekly Downloads

A customizable Flutter widget that allows multiple expansion tiles/cards with easy state management and styling.

Repository (GitHub)
View/report issues

License

MIT (license)

Dependencies

flutter

More

Packages that depend on multi_expansion_card