payengine 1.5.6 copy "payengine: ^1.5.6" to clipboard
payengine: ^1.5.6 copied to clipboard

The PayEngine Flutter SDK allows you to build delightful payment experiences in your native Android and iOS apps using Flutter. We provide powerful and customizable UI screens and elements that can be [...]

example/lib/main.dart

import 'package:flutter/material.dart';
import 'package:payengine_example/config.dart';
import 'package:payengine_example/screens/becs_screen.dart';

import 'screens/bank_account_screen.dart';
import 'screens/credit_card_screen.dart';
import 'screens/onboarding_screen.dart';

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

class MyApp extends StatefulWidget {
  const MyApp({super.key});

  @override
  State<MyApp> createState() => _MyAppState();
}

class _MyAppState extends State<MyApp> with TickerProviderStateMixin {
  late TabController _controller;

  final config = Config.config;
  final merchantId = Config.merchantId;

  Map<dynamic, dynamic> result = {};

  @override
  void initState() {
    super.initState();
    _controller = TabController(length: 4, vsync: this);
  }

  @override
  Widget build(BuildContext context) {
    return MaterialApp(
      home: Scaffold(
        resizeToAvoidBottomInset: false,
        appBar: AppBar(
          title: const Text('PayEngine SDK example'),
          bottom: TabBar(
            controller: _controller,
            isScrollable: false,
            tabs: const [Tab(text: 'Onboarding'),Tab(text: 'Credit Card'), Tab(text: 'Bank Account'), Tab(text: 'BECS')],
          ),
        ),
        body: TabBarView(
          controller: _controller,
          physics: const NeverScrollableScrollPhysics(),
          children: [
            OnboardingScreen(config: config, merchantId: merchantId),
            CreditCardScreen(config: config, merchantId: merchantId),
            BankAccountScreen(config: config, merchantId: merchantId),
            BECSScreen(config: config, merchantId: merchantId)
          ],
        ),
      ),
    );
  }
}
2
likes
0
pub points
42%
popularity

Publisher

unverified uploader

The PayEngine Flutter SDK allows you to build delightful payment experiences in your native Android and iOS apps using Flutter. We provide powerful and customizable UI screens and elements that can be used out-of-the-box to collect your users' payment details

Homepage

License

unknown (license)

Dependencies

flutter, flutter_web_plugins, http, plugin_platform_interface, webview_flutter

More

Packages that depend on payengine