add function

This commit is contained in:
jyuesong
2022-01-17 14:21:41 +08:00
parent 96b9d720a5
commit c7b98a04db
23 changed files with 807 additions and 105 deletions

View File

@@ -0,0 +1,14 @@
import 'package:flutter/material.dart';
/// A button under the navigation bar to help the user write code.
class ToolButton {
Function press;
IconData? icon;
String? symbol;
ToolButton({
required this.press,
this.icon,
this.symbol,
});
}