Files
qinglong_app/lib/base/code_editor/ToolButton.dart
2022-01-17 14:21:41 +08:00

15 lines
262 B
Dart

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,
});
}