Line data Source code
1 : import 'dart:ui'; 2 : 3 : import '../../convex_bottom_bar.dart'; 4 : 5 : /// Simple builder which extend [DelegateBuilder] to provide some necessary config. 6 : abstract class InnerBuilder extends DelegateBuilder { 7 : /// List of [TabItem] stands for tabs. 8 : final List<TabItem> items; 9 : 10 : /// Color used when tab is active. 11 : final Color activeColor; 12 : 13 : /// Color used for tab. 14 : final Color color; 15 : 16 1 : InnerBuilder({this.items, this.activeColor, this.color}); 17 : }