crypto_wallet_sdk_flutter 1.0.0 copy "crypto_wallet_sdk_flutter: ^1.0.0" to clipboard
crypto_wallet_sdk_flutter: ^1.0.0 copied to clipboard

Flutter SDK for integrating cryptocurrency wallet functionality into your mobile apps. This SDK provides a seamless way to handle crypto transactions and wallet management in Flutter applications.

example/lib/main.dart

import 'package:example/deposit_page.dart';
import 'package:flutter/material.dart';

void main() {
  WidgetsFlutterBinding.ensureInitialized();
  runApp(const MyApp());
}

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

  @override
  Widget build(BuildContext context) {
    return MaterialApp(
      title: 'Flutter Demo',
      debugShowCheckedModeBanner: false,
      theme: ThemeData(
        colorScheme: ColorScheme.fromSeed(seedColor: Colors.deepPurple),
        useMaterial3: true,
      ),
      home: const HomePage(),
    );
  }
}

class HomePage extends StatelessWidget {
  const HomePage({super.key});

  @override
  Widget build(BuildContext context) {
    return Scaffold(
      appBar: AppBar(
        title: const Text('Crypto Payment SDK Example'),
      ),
      body: SafeArea(
          child: Center(
        child: ElevatedButton(
          onPressed: () => Navigator.of(context).push(DepositPage.route()),
          child: const Text('Deposit Address'),
        ),
      )),
    );
  }
}
0
likes
115
points
24
downloads

Publisher

unverified uploader

Weekly Downloads

Flutter SDK for integrating cryptocurrency wallet functionality into your mobile apps. This SDK provides a seamless way to handle crypto transactions and wallet management in Flutter applications.

Documentation

API reference

License

MIT (license)

Dependencies

flutter, flutter_inappwebview, http

More

Packages that depend on crypto_wallet_sdk_flutter