12345678910111213141516171819202122232425262728 |
- import 'package:flutter/material.dart';
- import 'package:flutter_paydemo/pages/home_page.dart';
- void main() {
- // fluwx.registerWxApi(appId: 'your_app_id', doOnAndroid: true, doOnIOS: true);
- // StripePayment.setOptions(StripeOptions(
- // publishableKey: "your_publishable_key",
- // merchantId: "Test",
- // androidPayMode: 'test'));
- runApp(const MyApp());
- }
- class MyApp extends StatelessWidget {
- const MyApp({super.key});
- // This widget is the root of your application.
- @override
- Widget build(BuildContext context) {
- return MaterialApp(
- title: 'Flutter Demo',
- theme: ThemeData(
- colorScheme: ColorScheme.fromSeed(seedColor: Colors.deepPurple),
- useMaterial3: true,
- ),
- home: const HomePage(),
- );
- }
- }
|