This repository has been archived on 2025-03-26. You can view files and clone it, but you cannot make any changes to it's state, such as pushing and creating new issues, pull requests or comments.
brook/lib/models/tab.dart
2025-01-03 18:33:59 -05:00

8 lines
154 B
Dart

import 'package:flutter/widgets.dart';
abstract class TabPage extends Widget {
const TabPage({super.key});
String get title;
IconData get icon;
}