This repository has been archived on 2025-03-26. You can view files and clone it, but cannot push or open issues or pull requests.
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;
}