ipfs_rpc 0.0.1 copy "ipfs_rpc: ^0.0.1" to clipboard
ipfs_rpc: ^0.0.1 copied to clipboard

An IPFS HTTP RPC Client for Dart & Flutter

example/lib/main.dart

import 'package:flutter/material.dart';

import 'playground_screen.dart';

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

class MyApp extends StatelessWidget {
  const MyApp({Key? key}) : super(key: key);

  @override
  Widget build(BuildContext context) {
    return MaterialApp(
      title: 'IPFS RPC Demo',
      theme: ThemeData.dark(),
      home: const PlaygroundScreen(),
    );
  }
}
2
likes
100
pub points
20%
popularity

Publisher

verified publisherstackwares.com

An IPFS HTTP RPC Client for Dart & Flutter

Repository (GitHub)
View/report issues

Documentation

API reference

License

MIT (LICENSE)

Dependencies

dio, either_option, logger

More

Packages that depend on ipfs_rpc