gatewire_dart 1.0.10 copy "gatewire_dart: ^1.0.10" to clipboard
gatewire_dart: ^1.0.10 copied to clipboard

Official Flutter SDK for the GateWire decentralized SMS infrastructure.

example/lib/main.dart

import 'package:flutter/material.dart';

import 'verification_demo_screen.dart';

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

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

  @override
  Widget build(BuildContext context) {
    return MaterialApp(
      title: 'GateWire SDK Demo',
      debugShowCheckedModeBanner: false,
      theme: ThemeData(
        colorScheme: ColorScheme.fromSeed(seedColor: const Color(0xFF1A73E8)),
        inputDecorationTheme: const InputDecorationTheme(
          border: OutlineInputBorder(),
          isDense: true,
        ),
      ),
      home: const VerificationDemoScreen(),
    );
  }
}
0
likes
155
points
188
downloads

Documentation

API reference

Publisher

unverified uploader

Weekly Downloads

Official Flutter SDK for the GateWire decentralized SMS infrastructure.

Homepage

License

MIT (license)

Dependencies

flutter, http, ussd_launcher

More

Packages that depend on gatewire_dart