open_file 1.2.1 copy "open_file: ^1.2.1" to clipboard
open_file: ^1.2.1 copied to clipboard

outdated

A plug-in that can call native APP to open files with string result in flutter,support iOS(UTI) and android(intent)

example/lib/main.dart

import 'package:flutter/material.dart';
import 'dart:async';

import 'package:open_file/open_file.dart';

void main() => runApp(new MyApp());

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

class _MyAppState extends State<MyApp> {
  String _openResult = 'Unknown';
  @override
  void initState() {
    super.initState();
    openFile("/storage/emulated/0/Download/2.jpg").then((_result){
      setState(() {
        _openResult = _result;
      });
    });
  }

  Future<String> openFile(filePath)async{
    return await OpenFile.open(filePath);
  }

  @override
  Widget build(BuildContext context) {

    return new MaterialApp(
      home: new Scaffold(
        appBar: new AppBar(
          title: const Text('Plugin example app'),
        ),
        body: new Center(
          child: new GestureDetector(child: new Text('open result: $_openResult\n'),),
        ),
      ),
    );
  }
}
867
likes
0
pub points
99%
popularity

Publisher

unverified uploader

A plug-in that can call native APP to open files with string result in flutter,support iOS(UTI) and android(intent)

Repository (GitHub)
View/report issues

License

unknown (LICENSE)

Dependencies

flutter

More

Packages that depend on open_file