mirror of
https://github.com/qinglong-app/qinglong_app.git
synced 2025-10-09 16:48:19 +08:00
15 lines
262 B
Dart
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,
|
|
});
|
|
}
|