Last updated:
0 purchases
jwtson
jwtson #
A new Flutter plugin project.
Getting Started #
This project is a starting point for a Flutter
plug-in package,
a specialized package that includes platform-specific implementation code for
Android and/or iOS.
For help getting started with Flutter development, view the
online documentation, which offers tutorials,
samples, guidance on mobile development, and a full API reference.
Example #
import 'package:flutter/material.dart';
import 'package:jwtson/jwtson.dart';
void main() {
runApp(const MyApp());
}
class MyApp extends StatefulWidget {
const MyApp({Key? key}) : super(key: key);
@override
State<MyApp> createState() => _MyAppState();
}
class _MyAppState extends State<MyApp> {
final _jwtsonPlugin = Jwtson();
@override
void initState() {
super.initState();
}
@override
Widget build(BuildContext context) {
return MaterialApp(
home: Scaffold(
appBar: AppBar(
title: const Text('Jwtson example app'),
),
body: Center(
child: ElevatedButton(
onPressed: () async {
// generate and sign jwt token
var data = await _jwtsonPlugin.generateToken(key: "test", data: {"key": "value"});
print(data);
// decode jwt token
var decode = await _jwtsonPlugin.decodeJwtToken(key: "test", data: data);
print(decode?.data);
},
child: const Text('click me')),
),
),
);
}
}
copied to clipboard
For personal and professional use. You cannot resell or redistribute these repositories in their original state.
There are no reviews.