v2.3.1flutter_grid_button
ボタンをグリッド形式に配置するFlutterウィジェットです。番号パッドや電卓などを作成するのに役立ちます。
30いいね 260030日間ダウンロード160Pub ポイント
AndroidiOSWebmacOSWindowsLinux
ボタンをグリッドに配置する Flutter ウィジェット。
{"sdk":"flutter"}{"sdk":"flutter"}^1.0.0以下は英語原文のスナップショットです。最新版は GitHub をご覧ください。
Flutter widget that arrange buttons in a grid. It is useful for making a number pad, calculator, and so on.
https://github.com/zuvola/flutter_grid_button/blob/master/example/screenshot.png?raw=trueTo use this plugin, add flutter_grid_button as a dependency in your pubspec.yaml file.
dependencies:
flutter_grid_button:
Import the library in your file.
import 'package:flutter_grid_button/flutter_grid_button.dart';
See the example directory for a complete sample app using GridButton.
Or use the GridButton like below.
GridButton(
onPressed: (String value) {
/*...*/
},
items: [
[
GridButtonItem(title: "1"),
GridButtonItem(child: Text("2")),
GridButtonItem(title: "3", flex: 2),
],
[
GridButtonItem(title: "a", value: "100", longPressValue: "long"),
GridButtonItem(title: "b", color: Colors.lightBlue)
],
],
)