floating_tabbar 1.0.2 copy "floating_tabbar: ^1.0.2" to clipboard
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.

example/lib/main.dart

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(),
    );
  }
}
74
likes
150
pub points
81%
popularity

Publisher

unverified uploader

The floating_tabbar package for Flutter allows you to use the responsive design for all platforms made from the Material Design System.

Repository (GitHub)
View/report issues

Documentation

API reference

License

BSD-3-Clause (license)

Dependencies

adaptive_breakpoints, flutter, intl

More

Packages that depend on floating_tabbar