lb_wallet 1.0.2 copy "lb_wallet: ^1.0.2" to clipboard
lb_wallet: ^1.0.2 copied to clipboard

Logbot wallet API package to manage wallet, products and services in your Logbot account

example/lib/main.dart

// Copyright 2022 Logbot SRL. All rights reserved.
// Use of this source code is governed by a BSD-style license that can be
// found in the LICENSE file.

import 'package:example/ui/apis/get_wallet_api_page.dart';
import 'package:example/ui/home_page.dart';
import 'package:example/ui/login_page.dart';
import 'package:flutter/material.dart';
import 'package:flutter_dotenv/flutter_dotenv.dart';

Future<void> main() async {
  await dotenv.load(fileName: ".env");
  runApp(const MyApp());
}

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

  // This widget is the root of your application.
  @override
  Widget build(BuildContext context) {
    return MaterialApp(
      title: 'Logbot SDK - Wallet Example',
      themeMode: ThemeMode.light,
      theme: ThemeData(
        primarySwatch: Colors.blue,
      ),
      home: const LoginPage(),
      initialRoute: '/login',
      routes: {
        '/home': (context) => const HomePage(),
        '/login': (context) => const LoginPage(),
        '/wallets/getWallet': (context) => const GetWalletApiPage(),
      },
    );
  }
}
0
likes
50
pub points
39%
popularity

Publisher

verified publisherlogbot.cloud

Logbot wallet API package to manage wallet, products and services in your Logbot account

Homepage

Documentation

Documentation

License

BSD-3-Clause (LICENSE)

Dependencies

http, intl, lb_auth, lb_commons, meta

More

Packages that depend on lb_wallet