fastpix_resumable_uploader 2.0.0
fastpix_resumable_uploader: ^2.0.0 copied to clipboard
A robust Flutter package for uploading large video and audio files with advanced features like chunked uploads, pause/resume functionality, network resilience, comprehensive progress tracking, and det [...]
import 'package:flutter/material.dart';
import 'upload_screen.dart';
void main() {
runApp(const FastPixUploaderExampleApp());
}
class FastPixUploaderExampleApp extends StatelessWidget {
const FastPixUploaderExampleApp({super.key});
@override
Widget build(BuildContext context) {
return MaterialApp(
title: 'FastPix Resumable Uploader Example',
debugShowCheckedModeBanner: false,
theme: ThemeData(
useMaterial3: true,
colorScheme: ColorScheme.fromSeed(seedColor: Colors.indigo),
),
home: const UploadScreen(),
);
}
}