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

outdated

SAP Gigya Flutter plugin

example/lib/main.dart

import 'package:flutter/material.dart';
import 'package:gigya_flutter_plugin_example/routes/account_information.dart';
import 'package:gigya_flutter_plugin_example/routes/home_page.dart';
import 'package:gigya_flutter_plugin_example/routes/login_with_credentials.dart';
import 'package:gigya_flutter_plugin_example/routes/manage_connection.dart';
import 'package:gigya_flutter_plugin_example/routes/register_with_credentials.dart';
import 'package:gigya_flutter_plugin_example/routes/send_request.dart';

void main() {
  runApp(MyApp());
}

class MyApp extends StatefulWidget {
  @override
  _MyAppState createState() => _MyAppState();
}

class _MyAppState extends State<MyApp> {
  @override
  Widget build(BuildContext context) {
    return MaterialApp(
      initialRoute: '/',
      routes: {
        // When navigating to the "/" route, build the FirstScreen widget.
        '/': (context) => HomePageWidget(),
        // When navigating to the "/second" route, build the SecondScreen widget.
        '/send_request': (context) => SendRequestPageWidget(),
        '/login_credentials': (context) => LoginWidthCredentialsWidget(),
        '/register_email': (context) => RegisterWithEmailWidget(),
        '/account_information': (context) => AccountInformationWidget(),
        '/manage_connections': (context) => ManageConnectionWidget(),
      },
    );
  }
}
2
likes
0
pub points
83%
popularity

Publisher

unverified uploader

SAP Gigya Flutter plugin

Homepage

License

unknown (LICENSE)

Dependencies

flutter

More

Packages that depend on gigya_flutter_plugin