floating_tabbar 1.0.3-beta.1 copy "floating_tabbar: ^1.0.3-beta.1" to clipboard
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 [...]

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],
      ),
      /* Check whole example folder in the package which has smoke test for each widget */
      home: const SmokeTest(),
    );
  }
}
61
likes
0
pub points
81%
popularity

Publisher

unverified uploader

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 the Material Design System.

Repository (GitHub)
View/report issues

License

unknown (LICENSE)

Dependencies

adaptive_breakpoints, flutter, intl

More

Packages that depend on floating_tabbar