mirror of
				https://github.com/ImranR98/Obtainium.git
				synced 2025-11-03 23:03:29 +01:00 
			
		
		
		
	
		
			
				
	
	
		
			99 lines
		
	
	
		
			3.3 KiB
		
	
	
	
		
			Dart
		
	
	
	
	
	
			
		
		
	
	
			99 lines
		
	
	
		
			3.3 KiB
		
	
	
	
		
			Dart
		
	
	
	
	
	
import 'package:animations/animations.dart';
 | 
						|
import 'package:flutter/material.dart';
 | 
						|
import 'package:flutter/services.dart';
 | 
						|
import 'package:obtainium/pages/add_app.dart';
 | 
						|
import 'package:obtainium/pages/apps.dart';
 | 
						|
import 'package:obtainium/pages/import_export.dart';
 | 
						|
import 'package:obtainium/pages/settings.dart';
 | 
						|
 | 
						|
class HomePage extends StatefulWidget {
 | 
						|
  const HomePage({super.key});
 | 
						|
 | 
						|
  @override
 | 
						|
  State<HomePage> createState() => _HomePageState();
 | 
						|
}
 | 
						|
 | 
						|
class NavigationPageItem {
 | 
						|
  late String title;
 | 
						|
  late IconData icon;
 | 
						|
  late Widget widget;
 | 
						|
 | 
						|
  NavigationPageItem(this.title, this.icon, this.widget);
 | 
						|
}
 | 
						|
 | 
						|
class _HomePageState extends State<HomePage> {
 | 
						|
  List<int> selectedIndexHistory = [];
 | 
						|
 | 
						|
  List<NavigationPageItem> pages = [
 | 
						|
    NavigationPageItem(
 | 
						|
        'Apps', Icons.apps, AppsPage(key: GlobalKey<AppsPageState>())),
 | 
						|
    NavigationPageItem('Add App', Icons.add, const AddAppPage()),
 | 
						|
    NavigationPageItem(
 | 
						|
        'Import/Export', Icons.import_export, const ImportExportPage()),
 | 
						|
    NavigationPageItem('Settings', Icons.settings, const SettingsPage())
 | 
						|
  ];
 | 
						|
 | 
						|
  @override
 | 
						|
  Widget build(BuildContext context) {
 | 
						|
    return WillPopScope(
 | 
						|
        child: Scaffold(
 | 
						|
          backgroundColor: Theme.of(context).colorScheme.surface,
 | 
						|
          body: PageTransitionSwitcher(
 | 
						|
            transitionBuilder: (
 | 
						|
              Widget child,
 | 
						|
              Animation<double> animation,
 | 
						|
              Animation<double> secondaryAnimation,
 | 
						|
            ) {
 | 
						|
              return SharedAxisTransition(
 | 
						|
                animation: animation,
 | 
						|
                secondaryAnimation: secondaryAnimation,
 | 
						|
                transitionType: SharedAxisTransitionType.horizontal,
 | 
						|
                child: child,
 | 
						|
              );
 | 
						|
            },
 | 
						|
            child: pages
 | 
						|
                .elementAt(selectedIndexHistory.isEmpty
 | 
						|
                    ? 0
 | 
						|
                    : selectedIndexHistory.last)
 | 
						|
                .widget,
 | 
						|
          ),
 | 
						|
          bottomNavigationBar: NavigationBar(
 | 
						|
            destinations: pages
 | 
						|
                .map((e) =>
 | 
						|
                    NavigationDestination(icon: Icon(e.icon), label: e.title))
 | 
						|
                .toList(),
 | 
						|
            onDestinationSelected: (int index) {
 | 
						|
              HapticFeedback.selectionClick();
 | 
						|
              setState(() {
 | 
						|
                if (index == 0) {
 | 
						|
                  selectedIndexHistory.clear();
 | 
						|
                } else if (selectedIndexHistory.isEmpty ||
 | 
						|
                    (selectedIndexHistory.isNotEmpty &&
 | 
						|
                        selectedIndexHistory.last != index)) {
 | 
						|
                  int existingInd = selectedIndexHistory.indexOf(index);
 | 
						|
                  if (existingInd >= 0) {
 | 
						|
                    selectedIndexHistory.removeAt(existingInd);
 | 
						|
                  }
 | 
						|
                  selectedIndexHistory.add(index);
 | 
						|
                }
 | 
						|
              });
 | 
						|
            },
 | 
						|
            selectedIndex:
 | 
						|
                selectedIndexHistory.isEmpty ? 0 : selectedIndexHistory.last,
 | 
						|
          ),
 | 
						|
        ),
 | 
						|
        onWillPop: () async {
 | 
						|
          if (selectedIndexHistory.isNotEmpty) {
 | 
						|
            setState(() {
 | 
						|
              selectedIndexHistory.removeLast();
 | 
						|
            });
 | 
						|
            return false;
 | 
						|
          }
 | 
						|
          return !(pages[0].widget.key as GlobalKey<AppsPageState>)
 | 
						|
              .currentState
 | 
						|
              ?.clearSelected();
 | 
						|
          // return !appsPageKey.currentState?.clearSelected();
 | 
						|
        });
 | 
						|
  }
 | 
						|
}
 |