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

Package to connect crypto wallets to flutter applications. Works with all wallets affiliated with WalletConnect.

example/main.dart

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

class Login extends StatefulWidget {
  const Login({Key? key}) : super(key: key);

  @override
  State<Login> createState() => _LoginState();
}

class _LoginState extends State<Login> {
  Web3Connect connection = Web3Connect();
  @override
  Widget build(BuildContext context) {
    return Scaffold(
      appBar: AppBar(title: const Text("Login Page")),
      body: Center(
          child: ElevatedButton(
        child: const Text("Log In"),
        onPressed: () async {
          await connection.connect();
          if (connection.account != "") {
            Navigator.push(
                context,
                MaterialPageRoute(
                    builder: ((context) => Home(connection: connection))));
          }
        },
      )),
    );
  }
}

class Home extends StatefulWidget {
  const Home({Key? key, required this.connection}) : super(key: key);
  final Web3Connect connection;

  @override
  State<Home> createState() => _HomeState();
}

class _HomeState extends State<Home> {
  bool killed = false;
  @override
  Widget build(BuildContext context) {
    return Scaffold(
      appBar: AppBar(
        title: const Text("Home Page"),
        automaticallyImplyLeading: false,
      ),
      body: Center(
        child: Column(
          children: [
            const SizedBox(
              height: 20,
            ),
            Text(widget.connection.account),
            const SizedBox(
              height: 20,
            ),
            ElevatedButton(
                onPressed: () async {
                  await widget.connection.disconnect();
                  setState(() {
                    killed = true;
                  });
                },
                child: const Text("Kill Session")),
            const SizedBox(
              height: 20,
            ),
            killed
                ? const Text(
                    "Session Killed",
                    style: TextStyle(color: Colors.red),
                  )
                : const Text("Session Connected"),
          ],
        ),
      ),
    );
  }
}
5
likes
70
pub points
42%
popularity

Publisher

unverified uploader

Package to connect crypto wallets to flutter applications. Works with all wallets affiliated with WalletConnect.

Repository (GitHub)
View/report issues

Documentation

API reference

License

MIT (LICENSE)

Dependencies

dart_web3, flutter, http, provider, url_launcher, walletconnect_dart, web3dart

More

Packages that depend on web3_connect