You cannot select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
24 lines
472 B
Dart
24 lines
472 B
Dart
import 'package:flutter/material.dart';
|
|
|
|
class AppTabBar extends StatelessWidget {
|
|
|
|
const AppTabBar({Key key}) : super(key: key);
|
|
|
|
@override
|
|
Widget build(BuildContext context) {
|
|
return TabBar(
|
|
tabs:[
|
|
Tab(
|
|
icon: Icon(Icons.cloud_outlined),
|
|
),
|
|
Tab(
|
|
icon: Icon(Icons.beach_access_sharp),
|
|
),
|
|
Tab(
|
|
icon: Icon(Icons.brightness_5_sharp),
|
|
),
|
|
],
|
|
);
|
|
}
|
|
}
|