logto_links_dart 3.0.0 copy "logto_links_dart: ^3.0.0" to clipboard
logto_links_dart: ^3.0.0 copied to clipboard

Third party Logto's Flutter SDK packages, based on the original logto_dart_sdk.

example/lib/main.dart

import 'package:flutter/material.dart';
import 'auth.dart';
import 'home.dart';

void main() async {
  await init();
  runApp(const MyApp());
}

Future<void> init() async {
  WidgetsFlutterBinding.ensureInitialized();
  await initLogtoClient();
}

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

  // This widget is the root of your application.
  @override
  Widget build(BuildContext context) {
    return MaterialApp(
      title: 'Flutter Demo',
      theme: ThemeData(
        colorScheme: ColorScheme.fromSeed(seedColor: Colors.deepPurple),
      ),
      home: const Home(),
    );
  }
}
0
likes
115
points
19
downloads

Documentation

Documentation
API reference

Publisher

unverified uploader

Weekly Downloads

Third party Logto's Flutter SDK packages, based on the original logto_dart_sdk.

Repository (GitHub)
View/report issues

License

MIT (license)

Dependencies

crypto, flutter, flutter_secure_storage, http, jose, json_annotation, path, url_launcher

More

Packages that depend on logto_links_dart