#24 #25 #33 new: sftp file edit

This commit is contained in:
lollipopkit
2023-05-28 18:21:03 +08:00
parent dbabe81e3c
commit 06be4503ca
28 changed files with 329 additions and 173 deletions

View File

@@ -7,8 +7,11 @@ class AppRoute {
AppRoute(this.page, this.title);
void go(BuildContext context) {
Future<T?> go<T>(BuildContext context) {
Analysis.recordView(title);
Navigator.push(context, MaterialPageRoute(builder: (context) => page));
return Navigator.push<T>(
context,
MaterialPageRoute(builder: (context) => page),
);
}
}