flutter_session 0.0.1 copy "flutter_session: ^0.0.1" to clipboard
flutter_session: ^0.0.1 copied to clipboard

outdated

A simple session package for Flutter that works on both mobile, web and (hopefully) desktop apps.

flutter_session #

Adds session support to Flutter. Works with mobile, web and (hopefully) desktop build.

Write values to the session: #

await FlutterSession().set("token", myJWTToken);

or

var session = FlutterSession();
await session.set("token", myJWTToken);
await session.set("name", "jhourlad");
await session.set("id", 1);
await session.set("price", 10.50);
await session.set("isOK", true);

Read values from the session: #

dynamic token = await FlutterSession().get("token");

Session persists throughout the app's lifetime.

217
likes
0
pub points
85%
popularity

Publisher

unverified uploader

A simple session package for Flutter that works on both mobile, web and (hopefully) desktop apps.

Repository (GitHub)
View/report issues

License

unknown (LICENSE)

Dependencies

flutter, shared_preferences

More

Packages that depend on flutter_session