file_support 0.0.4 copy "file_support: ^0.0.4" to clipboard
file_support: ^0.0.4 copied to clipboard

outdated

File Support is plugin very helpful for different kind of file handling operations.Like generate multipart files.Create custom file,get file properties like size,type,name etc.Also include special fil [...]

example/lib/main.dart

import 'dart:io';

import 'package:file_picker/file_picker.dart';
import 'package:file_support_example/screens/canvas_maker.dart';
import 'package:file_support_example/screens/file_details.dart';
import 'package:file_support_example/screens/first_screen.dart';
import 'package:flutter/material.dart';
import 'dart:async';

import 'package:flutter/services.dart';
import 'package:file_support/file_support.dart';

void main() {
  runApp(MyApp());
}

class MyApp extends StatefulWidget {
  @override
  _MyAppState createState() => _MyAppState();
}

class _MyAppState extends State<MyApp> {
  @override
  void initState() {
    super.initState();
  }

  @override
  Widget build(BuildContext context) {
    return MaterialApp(
     // home:ImageGenerator() ,
      home:FirstScreen() ,
    );
  }


}
33
likes
0
pub points
86%
popularity

Publisher

unverified uploader

File Support is plugin very helpful for different kind of file handling operations.Like generate multipart files.Create custom file,get file properties like size,type,name etc.Also include special file to base64 support and lots more.

Repository (GitHub)
View/report issues

License

unknown (license)

Dependencies

dio, file_sizes, flutter, http, http_parser, logger, mime_type, path_provider, uuid

More

Packages that depend on file_support