landscape_tab_view 0.0.2
landscape_tab_view: ^0.0.2 copied to clipboard
A Flutter package to easily manage landscape views on tablets — ideal for building responsive, split-view UIs like Flipkart, Zomato, and other large-scale apps.
landscape_tab_view #
A Flutter package that makes it easy to build responsive, split-view tablet UIs that adapt automatically to landscape orientation — inspired by apps like Flipkart, Zomato, and other large-scale applications.
✨ Features #
- Automatically switches to landscape layout on tablets (width ≥ 600).
- Provides a master-detail layout with a customizable width.
- Built-in navigation arrows to adjust content alignment (start, center, end).
- Minimal setup — just wrap your
runApp()withLandscapeTabView.
Screenshot #
Here’s how its look

🚀 Usage #
- Just wrap your
runApp()insideLandscapeTabView
main.dart
void main() {
runApp(
LandscapeTabView(child: const MyApp()),
);
}
🛠️ Getting Started #
Add this to your pubspec.yaml:
dependencies:
landscape_tab_view: ^0.0.1