Initial project

This commit is contained in:
Cody
2026-03-06 14:56:17 +08:00
parent 977b627b15
commit bf9e099747
1180 changed files with 50973 additions and 0 deletions

View File

@@ -0,0 +1,10 @@
import 'package:flutter_test/flutter_test.dart';
import 'package:storage_sdk_example/main.dart';
void main() {
testWidgets('Example app renders', (WidgetTester tester) async {
await tester.pumpWidget(const ExampleApp());
expect(find.text('Storage SDK Example'), findsOneWidget);
});
}