signin_with_linkedin 2.0.1 copy "signin_with_linkedin: ^2.0.1" to clipboard
signin_with_linkedin: ^2.0.1 copied to clipboard

A Flutter package for seamless LinkedIn authentication, allowing users to sign in with LinkedIn and retrieve profile data securely.

example/lib/main.dart

import 'package:flutter/material.dart';

import 'screens/login_screen.dart';

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

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

  @override
  Widget build(BuildContext context) {
    return MaterialApp(
      title: 'Sign in with LinkedIn',
      debugShowCheckedModeBanner: false,
      theme: ThemeData(
        colorScheme: ColorScheme.fromSeed(seedColor: Colors.deepPurple),
        useMaterial3: true,
      ),
      home: const LoginScreen(),
    );
  }
}
14
likes
160
points
810
downloads

Publisher

verified publisherauberginesolutions.com

Weekly Downloads

A Flutter package for seamless LinkedIn authentication, allowing users to sign in with LinkedIn and retrieve profile data securely.

Homepage
Repository (GitHub)
View/report issues

Documentation

API reference

License

MIT (license)

Dependencies

equatable, flutter, http, uuid, web, webview_flutter

More

Packages that depend on signin_with_linkedin