v0.1.2
pandapie
pandas 向けの豪華なパイチャート。Pandapie は新しいニューモルフィックデザインのトレンドに合わせて設計されています。
16いいね 830日間ダウンロード35Pub ポイント
プラットフォーム情報なし
pandas 用の豪華な円グラフ。
{"sdk":"flutter"}{"sdk":"flutter"}以下は英語原文のスナップショットです。最新版は GitHub をご覧ください。
Pub
A fancy pie chart for pandas. Pandapie designed for new neumorphic design trend.
| Preview | PageView |
|---|---|
| Preview Png | Preview Gif |
size - size of chartselectedKey - selected keyid - the id of this itemvalue - the value of this itemAdd the dependency in pubspec.yaml:
dependencies:
...
pandapie: ^0.1.2
class Home extends StatelessWidget {
@override
Widget build(BuildContext context) {
return Scaffold(
backgroundColor: Color(0xFF202327),
body: Center(
child: PandaPie(
selectedKey: '3',
data: [
PandaPieData(
key: '1',
value: 50,
),
PandaPieData(
key: '2',
value: 50,
),
PandaPieData(
key: '3',
value: 30,
),
],
),
),
);
}
}