You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
19 lines
364 B
19 lines
364 B
import 'package:flutter/material.dart'; |
|
|
|
class AppTab { |
|
final String id; |
|
final String title; |
|
final String? type; // 新增类型字段 |
|
final IconData? icon; // 新增图标字段 |
|
String content; |
|
String? fileName; |
|
|
|
AppTab({ |
|
required this.id, |
|
required this.title, |
|
this.type, |
|
this.icon, |
|
this.content = '', |
|
this.fileName, |
|
}); |
|
}
|
|
|