flutter_publitio 1.0.5 copy "flutter_publitio: ^1.0.5" to clipboard
flutter_publitio: ^1.0.5 copied to clipboard

discontinued

Publit.io plugin for Flutter, allowing uploading, hosting and delivering media assets images and videos.

example/lib/main.dart

import 'package:flutter/material.dart';
import 'home_screen.dart';
import 'package:flutter_publitio/flutter_publitio.dart';

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

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

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

  static configurePublitio() async {
    await FlutterPublitio.configure("YOUR_API_KEY", "YOUR_API_SECRET");
  }

  @override
  Widget build(BuildContext context) {
    return MaterialApp(home: HomeScreen());
  }
}
5
likes
30
points
52
downloads

Publisher

unverified uploader

Weekly Downloads

Publit.io plugin for Flutter, allowing uploading, hosting and delivering media assets images and videos.

Repository (GitHub)

License

unknown (license)

Dependencies

flutter

More

Packages that depend on flutter_publitio