singpass 0.0.5 copy "singpass: ^0.0.5" to clipboard
singpass: ^0.0.5 copied to clipboard

singpass flow api call by packgeing calling methode

SingPass #

1.what is singpass? Singpass is every Singapore resident’s trusted digital identity for easy and secure access to over 2,000 government and private sector services online and in person.

Of the 4.5 million residents on Singpass, more than 3.5 million users are on the Singpass app. Users can log in to digital services, prove their identity over counters, digitally sign documents and do more with the Singpass app.

Singpass is managed by the Government Technology Agency (GovTech) and is one of eight strategic national projects that drive Singapore’s Smart Nation vision.

2.how to use singpass? Singpass has stringent security measures to safeguard users’ personal data while ensuring Singpass services remain accessible to users. It is crucial for users to play an active role in protecting their account and personal information.

3.Current features include:

  • One-tap access to commonly-used government digital services like CPF, HDB, IRAS and NS Portal. Last used services are also displayed for easy access.

  • Profile section where users always have their important information such as CPF balance and HDB details on hand.

  • Proving identity and providing information in person by scanning a QR code. Currently, patients at SingHealth polyclinics and visitors to Republic Plaza can use their Singpass app for registration, in place of manual form filling.

  • Timely notifications from government agencies in the Singpass app inbox. For instance, users who are due for NRIC re-registration and passport renewal will receive notifications in their app inbox.

  • Authorised individuals of business entities can switch to their business profile to access and view selected corporate data on the Singpass app. Users need to have a valid Corppass account.

Digital signing of documents by scanning a QR code, removing the need for users to be physically present to sign documents and agreements with businesses who offer the Sign with Singpass service.

SingPass in FLUTTER #

this package is developed by inypay banking company. we are developed flutter package for access user datas via singpass details using this package we can access all users datas by a single click and we also read personal datasd based on the details we manipulate our process. this package is helpful for singapur flutter developers.

Installation #

  1. Add the latest version of package to your pubspec.yaml (and rundart pub get):
dependencies:
  singpass: ^0.0.4
  1. Import the package and use it in your Flutter App.
import 'package:singpass/singpass.dart';

Example #

Access And VErify Datas From singpass Database:

//example

if (request.content.source.contains("callback?code=")) {
url = request.content.source;
const startWord = "code=";
const endWord = "&state=";

final startIndex = url.indexOf(startWord);
final endIndex =
url.indexOf(endWord, startIndex + startWord.length);

final String output =
url.substring(startIndex + startWord.length, endIndex);

final String code = url.substring(url.lastIndexOf('=') + 1);
authcode = output;
state = code;
if (authcode != null && authcode != '') {
startLoader();
singpassRequest();
}
//calling methode


Navigator.push(context,MaterialPageRoute(
builder: (context) => SingpassScreen(
  DeviceToken: DeviceToken.toString(),
  XAPIKey: XAPIKey.toString(),
  SingpassPost: SingpassPost.toString(),
  successScreen: successScreen.toString(),
  ErrorScreen: ErrorScreen.toString(),

  ),),
);

Next Goals #

  • Enable All features for this singpass functions. Now, you can specify the read and specify a function.

  • Add more containers to the package.

who we are #

Inypay is a Singapore-based fintech launching a neobank in 2023. We are building the next-generation, customer-centric financial experience.

  • ❌ to be continued singpass development.
1
likes
110
pub points
0%
popularity

Publisher

verified publisherwallei.in

singpass flow api call by packgeing calling methode

Homepage

Documentation

API reference

License

BSD-3-Clause (license)

Dependencies

flutter, fluttertoast, http, lottie, shared_preferences, webviewx

More

Packages that depend on singpass