pikapika/lib/screens/AppScreen.dart

99 lines
2.4 KiB
Dart

import 'dart:async';
import 'dart:io';
import 'package:flutter/material.dart';
import 'package:pikapika/basic/config/Version.dart';
import 'package:pikapika/screens/components/Badge.dart';
import 'package:uni_links/uni_links.dart';
import 'package:uri_to_file/uri_to_file.dart';
import 'CategoriesScreen.dart';
import 'PkzArchiveScreen.dart';
import 'SpaceScreen.dart';
// MAIN UI 底部导航栏
class AppScreen extends StatefulWidget {
const AppScreen({Key? key}) : super(key: key);
@override
State<AppScreen> createState() => _AppScreenState();
}
class _AppScreenState extends State<AppScreen> {
late StreamSubscription<String?> _linkSubscription;
@override
void initState() {
versionEvent.subscribe(_onVersion);
// todo 不必要cancel 随机监听就好了, APP关闭时销毁, 考虑移动到APP里
_linkSubscription = linkStream.listen((uri) async {
if (uri == null) return;
RegExp regExp = RegExp(r"^.*\.pkz$");
final matches = regExp.allMatches(uri);
if (matches.isNotEmpty) {
File file = await toFile(uri);
Navigator.of(context).push(MaterialPageRoute(
builder: (BuildContext context) =>
PkzArchiveScreen(pkzPath: file.path),
));
}
});
super.initState();
}
@override
void dispose() {
versionEvent.unsubscribe(_onVersion);
_linkSubscription.cancel();
super.dispose();
}
void _onVersion(dynamic a) {
setState(() {});
}
static const List<Widget> _widgetOptions = <Widget>[
CategoriesScreen(),
SpaceScreen(),
];
late int _selectedIndex = 0;
void _onItemTapped(int index) {
setState(() {
_selectedIndex = index;
});
}
@override
Widget build(BuildContext context) {
return Scaffold(
body: IndexedStack(
index: _selectedIndex,
children: _widgetOptions,
),
bottomNavigationBar: BottomNavigationBar(
items: <BottomNavigationBarItem>[
const BottomNavigationBarItem(
icon: Icon(Icons.public),
label: '浏览',
),
BottomNavigationBarItem(
icon: Badged(
child: const Icon(Icons.face),
badge: latestVersion() == null ? null : "1",
),
label: '我的',
),
],
currentIndex: _selectedIndex,
iconSize: 20,
selectedFontSize: 12,
unselectedFontSize: 12,
onTap: _onItemTapped,
),
);
}
}