view_tabbar 1.2.1 copy "view_tabbar: ^1.2.1" to clipboard
view_tabbar: ^1.2.1 copied to clipboard

ViewTabBar is based on TabBarController and PageController, achieving linkage between TabBar and PageView

example/lib/main.dart

import 'package:flutter/material.dart';

void main() {
  runApp(const MyApp());
}

class MyApp extends StatefulWidget {
  const MyApp({super.key});

  @override
  State<MyApp> createState() => _MyAppState();
}

class _MyAppState extends State<MyApp> {
  @override
  Widget build(BuildContext context) {
    return MaterialApp(
      home: Scaffold(
        appBar: AppBar(
          title: const Text('About CustomTabbar Page'),
        ),
        body: const Center(
          child: Text('Testing'),
        ),
      ),
    );
  }
}
2
likes
0
pub points
47%
popularity

Publisher

verified publisherlinpengteng.dev

ViewTabBar is based on TabBarController and PageController, achieving linkage between TabBar and PageView

Repository (GitHub)
View/report issues

License

unknown (LICENSE)

Dependencies

flutter

More

Packages that depend on view_tabbar