now with easytabs!

This commit is contained in:
2024-09-04 19:37:03 -04:00
parent c2c47de6b5
commit 0c5c20188b
2 changed files with 34 additions and 20 deletions

13
lib/EasyTab.dart Normal file
View File

@@ -0,0 +1,13 @@
import 'package:flutter/material.dart';
class EasyTab {
final String title;
final IconData icon;
final Widget child;
const EasyTab({
required this.title,
required this.icon,
required this.child,
});
}