Auth in Flutter

Greg Perry
16 min readAug 23, 2019

Logging in using the Auth library package

auth library package

Authentication is a common task put to mobile apps — making it an ideal candidate for a class library. A class library would execute the task in a formalized and standardized fashion — making authenticating a breeze. I use such a class library for my own apps in the form of the Dart package, Auth. I will use ‘example’ code to demonstrate this package. This example code can be viewed in the…

--

--