flexible_expansion_list 0.0.3 flexible_expansion_list: ^0.0.3 copied to clipboard
A Flutter widget provide expansion lists in a flexible way.
import 'package:flutter/material.dart';
import 'screen/home_screen.dart';
void main() {
runApp(const MyApp());
}
class MyApp extends StatelessWidget {
const MyApp({Key? key}) : super(key: key);
@override
Widget build(BuildContext context) {
return MaterialApp(
title: 'Flexible Expansion List Demo',
theme: ThemeData(
primarySwatch: Colors.blue,
),
home: const HomeScreen(title: 'Flexible Expansion List Demo'),
);
}
}