floating_tabbar 1.0.3-beta.1 floating_tabbar: ^1.0.3-beta.1 copied to clipboard
The floating_tabbar solves and eases the problem of complex navigation user interfaces by providing a responsive solution, package allows you to use the responsive design for all platforms made from t [...]
import 'package:flutter/material.dart';
import 'smoke_test.dart';
void main() {
runApp(const MyApp());
}
class MyApp extends StatefulWidget {
const MyApp({Key? key}) : super(key: key);
@override
State<MyApp> createState() => _MyAppState();
}
class _MyAppState extends State<MyApp> {
@override
Widget build(BuildContext context) {
return MaterialApp(
title: 'Floating Tabbar',
debugShowCheckedModeBanner: false,
theme: ThemeData(
primaryColor: Colors.blue,
canvasColor: Colors.grey[50],
),
/* Check whole example folder in the package which has smoke test for each widget */
home: const SmokeTest(),
);
}
}