thaiqr 1.1.1 copy "thaiqr: ^1.1.1" to clipboard
thaiqr: ^1.1.1 copied to clipboard

A Flutter package for generating Thai QR codes compliant with the PromptPay standard.

example/lib/main.dart

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

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

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

  @override
  Widget build(BuildContext context) {
    return MaterialApp(
      home: Scaffold(
        appBar: AppBar(
          title: const Text("Thai QR"),
        ),
        body: ThaiQRWidget(
          mobileOrId: "1234567890123",
          amount: "100.23",
          showHeader: false,
        ),
      ),
    );
  }
}
2
likes
150
pub points
38%
popularity

Publisher

verified publishercwstory.com

A Flutter package for generating Thai QR codes compliant with the PromptPay standard.

Repository (GitHub)
View/report issues

Documentation

API reference

License

BSD-3-Clause (license)

Dependencies

flutter, qr_flutter

More

Packages that depend on thaiqr