persona_flutter 3.2.8 persona_flutter: ^3.2.8 copied to clipboard
Persona Inquiry for Flutter. Integrates the native v2 SDKs for iOS and Android.
import 'dart:async';
import 'package:flutter/material.dart';
import 'package:persona_flutter/persona_flutter.dart';
void main() {
runApp(MyApp());
}
class MyApp extends StatefulWidget {
@override
_MyAppState createState() => _MyAppState();
}
class _MyAppState extends State<MyApp> {
late InquiryConfiguration _configuration;
late StreamSubscription<InquiryCanceled> _streamCanceled;
late StreamSubscription<InquiryError> _streamError;
late StreamSubscription<InquiryComplete> _streamComplete;
@override
void initState() {
super.initState();
_configuration = TemplateIdConfiguration(
templateId: "itmpl_Q6ymLRwKfY8PGEjqsCjhUUfu",
environment: InquiryEnvironment.sandbox,
// locale: "pt-BR",
// Client theming is deprecated and will be removed in the future.
theme: InquiryTheme(
source: InquiryThemeSource.client,
accentColor: Color(0xff22CB8E),
primaryColor: Color(0xff22CB8E),
buttonBackgroundColor: Color(0xff22CB8E),
darkPrimaryColor: Color(0xff167755),
buttonCornerRadius: 8,
textFieldCornerRadius: 0,
),
);
_streamCanceled = PersonaInquiry.onCanceled.listen(_onCanceled);
_streamError = PersonaInquiry.onError.listen(_onError);
_streamComplete = PersonaInquiry.onComplete.listen(_onComplete);
}
@override
void dispose() {
_streamCanceled.cancel();
_streamError.cancel();
_streamComplete.cancel();
super.dispose();
}
void _onCanceled(InquiryCanceled event) {
print("InquiryCanceled");
print("- inquiryId: ${event.inquiryId}");
print("- sessionToken: ${event.sessionToken}");
}
void _onError(InquiryError event) {
print("InquiryError");
print("- error: ${event.error}");
}
void _onComplete(InquiryComplete event) {
print("InquiryComplete");
print("- inquiryId: ${event.inquiryId}");
print("- status: ${event.status}");
print("- fields:");
for (var key in event.fields.keys) {
print("-- key: $key, value: ${event.fields[key]}");
}
}
@override
Widget build(BuildContext context) {
return MaterialApp(
home: Scaffold(
body: Container(
color: Colors.grey[200],
child: Center(
child: ElevatedButton(
onPressed: () {
PersonaInquiry.init(configuration: _configuration);
PersonaInquiry.start();
},
child: Text("Start Inquiry"),
),
),
),
),
);
}
}