uri_content 0.0.3 copy "uri_content: ^0.0.3" to clipboard
uri_content: ^0.0.3 copied to clipboard

Get the Uint8List content of a given Uri. Supports file, data, content and http/https

example/lib/main.dart

import 'dart:convert';
import 'package:flutter/material.dart';
import 'package:uri_content/uri_content.dart';

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

class MyApp extends StatefulWidget {
  const MyApp({super.key});

  @override
  State<MyApp> createState() => _MyAppState();
}

class _MyAppState extends State<MyApp> {
  final uriContentFuture = Uri.parse(
          "https://raw.githubusercontent.com/talesbarreto/pull_request_coverage/main/README.md")
      .getContent()
      .then(utf8.decode);

  @override
  Widget build(BuildContext context) {
    return MaterialApp(
      home: Scaffold(
        appBar: AppBar(
          title: const Text("uri_content example"),
        ),
        body: SingleChildScrollView(
          child: FutureBuilder<String>(
            future: uriContentFuture,
            builder: (BuildContext context, AsyncSnapshot<String> snapshot) {
              return Text(snapshot.data ?? "No data");
            },
          ),
        ),
      ),
    );
  }
}
11
likes
0
pub points
94%
popularity

Publisher

unverified uploader

Get the Uint8List content of a given Uri. Supports file, data, content and http/https

Repository (GitHub)
View/report issues

License

unknown (license)

Dependencies

flutter

More

Packages that depend on uri_content