chip_list_choice 0.0.5 chip_list_choice: ^0.0.5 copied to clipboard
Flutter widget for representing picking items as a chip.
import 'package:flutter/material.dart';
import 'ChipListSample1.dart';
void main() => runApp(MyApp());
class MyApp extends StatelessWidget {
@override
Widget build(BuildContext context) {
return MaterialApp(
title: 'FlChart Demo',
debugShowCheckedModeBanner: false,
home: MyHomePage(title: 'fl_chart'),
);
}
}
class MyHomePage extends StatefulWidget {
MyHomePage({Key key, this.title}) : super(key: key);
final String title;
@override
_MyHomePageState createState() => _MyHomePageState();
}
class _MyHomePageState extends State<MyHomePage> {
@override
Widget build(BuildContext context) {
return Scaffold(
body: Center(child: ChipListSample1()),
);
}
}