SFTP support download. listDIr() support rollback.

This commit is contained in:
Junyuan Feng
2022-04-04 15:42:56 +08:00
parent f0081e0587
commit f8201f9542
8 changed files with 113 additions and 29 deletions

View File

@@ -1,3 +1,11 @@
import 'package:flutter/material.dart';
const centerLoading = Center(child: CircularProgressIndicator());
const centerSizedLoading = SizedBox(
width: 77,
height: 77,
child: Center(
child: CircularProgressIndicator(),
),
);