flutter_telegram_login

Creator: coderz1093

Last updated:

Add to Cart

Description:

flutter telegram login

flutter_telegram_login #
A Flutter plugin providing the required functions in order to implement login with Telegram.
Usage #
To use this plugin, add flutter_telegram_login as a dependency in your pubspec.yaml file.
Example #

import 'package:flutter/material.dart';
import 'package:flutter_telegram_login/flutter_telegram_login.dart';

final TelegramLogin telegramLogin = TelegramLogin(<PHONE_NUMBER:String>, <BOT_ID:String>, <BOT_DOMAIN:String>);

void main() => runApp(
MaterialApp(
home: Material(
child: Center(
child: Column(
children: [
ElevatedButton(
onPressed: telegramLogin.loginTelegram,
child: const Text("loginTelegram")
),
ElevatedButton(
onPressed: () async {
var success = await telegramLogin.checkLogin();
print(success);
},
child: const Text("checkLogin")
),
ElevatedButton(
onPressed: () async {
var data = await telegramLogin.getData();
print(data);
if (data) {
print(telegramLogin.userData);
}
},
child: const Text("getData")
),
ElevatedButton(
onPressed: () async {
await telegramLogin.telegramLaunch();
},
child: const Text("openTelegram")
),
]
)
)
)
)
);
copied to clipboard

License

For personal and professional use. You cannot resell or redistribute these repositories in their original state.

Files:

Customer Reviews

There are no reviews.