checkoutpage_flutter 0.0.2 copy "checkoutpage_flutter: ^0.0.2" to clipboard
checkoutpage_flutter: ^0.0.2 copied to clipboard

PlatformAndroidiOS
outdated

Checkout page for flutter

example/lib/main.dart

import 'package:flutter/material.dart';
import 'package:checkoutpage_flutter/checkoutpage_flutter.dart';



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

class MyApp extends StatefulWidget {

  final String? strUrl;
  const MyApp({Key? key,this.strUrl}) : super(key: key);

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

class _MyAppState extends State<MyApp> {
  String _platformVersion = 'Unknown';

  @override
  void initState() {
    super.initState();
  }


  @override
  Widget build(BuildContext context) {
    return MaterialApp(debugShowCheckedModeBanner: false,
      home: Scaffold(
        appBar: AppBar(
          title:  Text('Plugin  app'),
        ),
        body:Checkoutpage(
          strUrl: widget.strUrl,

        )
      ),
    );
  }
}
0
likes
120
pub points
49%
popularity

Publisher

unverified uploader

Checkout page for flutter

Repository (GitHub)
View/report issues

Documentation

API reference

License

unknown (LICENSE)

Dependencies

flutter, webview_flutter

More

Packages that depend on checkoutpage_flutter