flutter_ftp_client 1.0.9 copy "flutter_ftp_client: ^1.0.9" to clipboard
flutter_ftp_client: ^1.0.9 copied to clipboard

discontinued

This plugin provide an simple API to FTP access and manager files, Common-net-3.6 based. Currently only available for android platform.

example/lib/main.dart

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

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

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

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

class _MyAppState extends State<MyApp> {
  String _platformVersion = 'Unknown';

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

  // Platform messages are asynchronous, so we initialize in an async method.
  Future<void> initPlatformState() async {
    String platformVersion;
    // Platform messages may fail, so we use a try/catch PlatformException.
    try {
      FlutterFtpClient.configHost("192.168.1.116", "claudinei", "5c6h1224", "21");
      FlutterFtpClient.configFilePath("/", "produtos","txt");
//      FlutterFtpClient.configHost(
//          "127.0", "cliente", "yamaha", "9761");
//      FlutterFtpClient.configFilePath(
//          "/Download/Publico/Embapel1cliente/", "Embapel1cliente", "txt");
      platformVersion = await FlutterFtpClient.getFile;
    } on PlatformException {
      platformVersion = 'Failed to get platform version.';
    }

    // If the widget was removed from the tree while the asynchronous platform
    // message was in flight, we want to discard the reply rather than calling
    // setState to update our non-existent appearance.
    if (!mounted) return;

    setState(() {
      _platformVersion = platformVersion;
    });
  }

  @override
  Widget build(BuildContext context) {
    return MaterialApp(
      home: Scaffold(
        appBar: AppBar(
          title: const Text('Plugin example app'),
        ),
        body: Center(
          child: Text('Running on: $_platformVersion\n'),
        ),
      ),
    );
  }
}
2
likes
40
pub points
36%
popularity

Publisher

unverified uploader

This plugin provide an simple API to FTP access and manager files, Common-net-3.6 based. Currently only available for android platform.

Repository (GitHub)
View/report issues

License

BSD-3-Clause (LICENSE)

Dependencies

flutter

More

Packages that depend on flutter_ftp_client