uri_content 0.0.6 copy "uri_content: ^0.0.6" to clipboard
uri_content: ^0.0.6 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:flutter_markdown/flutter_markdown.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 uriStringFuture = 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("pull_request_coverage readme"),
        ),
        body: Column(
          children: [
            Flexible(
              flex: 3,
              child: FutureBuilder<String>(
                future: uriStringFuture,
                builder:
                    (BuildContext context, AsyncSnapshot<String> snapshot) {
                  return Markdown(
                    data: snapshot.data ?? snapshot.connectionState.name,
                    imageBuilder: (_, __, ___) => const SizedBox(),
                  );
                },
              ),
            ),
          ],
        ),
      ),
    );
  }
}
11
likes
160
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

Documentation

API reference

License

BSD-3-Clause (license)

Dependencies

flutter

More

Packages that depend on uri_content