87 lines
2.4 KiB
Dart
87 lines
2.4 KiB
Dart
import 'package:flutter/foundation.dart';
|
|
import 'package:flutter/material.dart';
|
|
import 'package:stripe_native_card_field/card_details.dart';
|
|
import 'package:stripe_native_card_field/stripe_native_card_field.dart';
|
|
|
|
void main() {
|
|
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(
|
|
debugShowCheckedModeBanner: false,
|
|
title: 'Native Stripe Field Demo',
|
|
theme: ThemeData(
|
|
colorScheme: ColorScheme.fromSeed(seedColor: Colors.deepPurple),
|
|
useMaterial3: true,
|
|
),
|
|
home: const MyHomePage(title: 'Flutter Demo Home Page'),
|
|
);
|
|
}
|
|
}
|
|
|
|
class MyHomePage extends StatefulWidget {
|
|
const MyHomePage({super.key, required this.title});
|
|
|
|
final String title;
|
|
|
|
@override
|
|
State<MyHomePage> createState() => _MyHomePageState();
|
|
}
|
|
|
|
class _MyHomePageState extends State<MyHomePage> {
|
|
CardDetailsValidState? state;
|
|
String? errorText;
|
|
|
|
@override
|
|
Widget build(BuildContext context) {
|
|
return Scaffold(
|
|
appBar: AppBar(
|
|
backgroundColor: Theme.of(context).colorScheme.inversePrimary,
|
|
title: Text(widget.title),
|
|
),
|
|
body: Center(
|
|
child: Column(
|
|
mainAxisAlignment: MainAxisAlignment.center,
|
|
children: <Widget>[
|
|
const Padding(
|
|
padding: EdgeInsets.all(8.0),
|
|
child: Text(
|
|
'Enter your card details below:',
|
|
),
|
|
),
|
|
CardTextField(
|
|
width: 300,
|
|
onCardDetailsComplete: (details) {
|
|
if (kDebugMode) {
|
|
print(details);
|
|
}
|
|
},
|
|
// textStyle: TextStyle(fontSize: 24.0),
|
|
// cardFieldWidth: 260,
|
|
// expFieldWidth: 100.0,
|
|
// securityFieldWidth: 60.0,
|
|
// postalFieldWidth: 130.0,
|
|
// iconSize: Size(50.0, 35.0),
|
|
overrideValidState: state,
|
|
errorText: errorText,
|
|
),
|
|
ElevatedButton(
|
|
child: const Text('Set manual error'),
|
|
onPressed: () => setState(() {
|
|
errorText = 'There is a problem';
|
|
state = CardDetailsValidState.invalidCard;
|
|
}),
|
|
)
|
|
],
|
|
),
|
|
),
|
|
);
|
|
}
|
|
}
|