floating_tabbar 1.0.2 floating_tabbar: ^1.0.2 copied to clipboard
The floating_tabbar package for Flutter allows you to use the responsive design for all platforms made from the Material Design System.
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],
),
home: const SmokeTest(),
);
}
}