filepicker_windows 0.1.1 copy "filepicker_windows: ^0.1.1" to clipboard
filepicker_windows: ^0.1.1 copied to clipboard

outdated

A plugin that uses FFI to offer file selection in Windows using the modern common item dialog box.

example/lib/main.dart

import 'dart:io';

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

import 'wallpaper.dart';

void main() => runApp(FilePickerExample());

class FilePickerExample extends StatelessWidget {
  @override
  Widget build(BuildContext context) {
    return MaterialApp(home: HomePage());
  }
}

class HomePage extends StatefulWidget {
  @override
  _HomePageState createState() => _HomePageState();
}

class _HomePageState extends State<HomePage> {
  File path;

  @override
  void initState() {
    super.initState();
  }

  @override
  Widget build(BuildContext context) {
    return Scaffold(
      appBar: AppBar(
        title: Text(path != null ? path.toString() : 'Select a file'),
      ),
      body: Center(
        child: Column(
          mainAxisAlignment: MainAxisAlignment.center,
          children: [
            SizedBox(
              height: MediaQuery.of(context).size.height / 2,
              width: MediaQuery.of(context).size.width - 100,
              child: path == null ? Placeholder() : Image.file(path),
            ),
            Row(
              mainAxisAlignment: MainAxisAlignment.spaceAround,
              children: [
                RaisedButton(
                  child: Text('Open file dialog'),
                  onPressed: () {
                    final file = FilePicker();
                    file.hidePinnedPlaces = true;
                    file.forcePreviewPaneOn = true;
                    file.filterSpecification = {
                      'JPEG Files': '*.jpg;*.jpeg',
                      'Bitmap Files': '*.bmp',
                      'All Files (*.*)': '*.*'
                    };
                    file.title = 'Select an image';
                    final result = file.getFile();
                    if (result != null) {
                      setState(() {
                        path = result;
                      });
                    }
                  },
                ),
                RaisedButton(
                  child: Text('Set Wallpaper'),
                  onPressed: () {
                    Wallpaper.set(path);
                  },
                )
              ],
            ),
          ],
        ),
      ),
    );
  }
}
106
likes
0
pub points
89%
popularity

Publisher

verified publisherhalildurmus.dev

A plugin that uses FFI to offer file selection in Windows using the modern common item dialog box.

Repository (GitHub)
View/report issues

License

unknown (LICENSE)

Dependencies

ffi, flutter, win32

More

Packages that depend on filepicker_windows