flutter_downloader_vm 0.0.1 copy "flutter_downloader_vm: ^0.0.1" to clipboard
flutter_downloader_vm: ^0.0.1 copied to clipboard

Powerful plugin making it easy to download files with custom notification title.

example/lib/main.dart

import 'package:flutter/material.dart';
import 'package:flutter_downloader_example/home_page.dart';
import 'package:flutter_downloader_vm/flutter_downloader_vm.dart';

void main() async {
  WidgetsFlutterBinding.ensureInitialized();
  await FlutterDownloader.initialize(debug: true, ignoreSsl: true);

  runApp(const MyApp());
}

class MyApp extends StatelessWidget {
  const MyApp({super.key});

  static const _title = 'flutter_downloader demo';

  @override
  Widget build(BuildContext context) {
    final platform = Theme.of(context).platform;

    return MaterialApp(
      title: _title,
      theme: ThemeData.light(),
      darkTheme: ThemeData.dark(),
      home: MyHomePage(
        title: _title,
        platform: platform,
      ),
    );
  }
}
2
likes
150
points
36
downloads

Documentation

API reference

Publisher

verified publisherdacyz.dev

Weekly Downloads

Powerful plugin making it easy to download files with custom notification title.

Repository (GitHub)
View/report issues

License

BSD-3-Clause (license)

Dependencies

flutter

More

Packages that depend on flutter_downloader_vm

Packages that implement flutter_downloader_vm