aicycle_insurance 0.0.4 copy "aicycle_insurance: ^0.0.4" to clipboard
aicycle_insurance: ^0.0.4 copied to clipboard

discontinued
PlatformAndroidiOS

Flutter plugin to add AICycle Insurance Widget inside your project.

example/lib/main.dart

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

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

class MyApp extends StatelessWidget {
  const MyApp({Key? key}) : super(key: key);

  // This widget is the root of your application.
  @override
  Widget build(BuildContext context) {
    return MaterialApp(
      title: 'Flutter Demo',
      debugShowCheckedModeBanner: false,
      theme: ThemeData(
        primarySwatch: Colors.blue,
      ),
      home: const MyHomePage(title: 'Flutter Demo Home Page'),
    );
  }
}

class MyHomePage extends StatefulWidget {
  const MyHomePage({Key? key, required this.title}) : super(key: key);

  final String title;

  @override
  State<MyHomePage> createState() => _MyHomePageState();
}

class _MyHomePageState extends State<MyHomePage> {
  @override
  Widget build(BuildContext context) {
    return Scaffold(
      appBar: AppBar(
        title: Text(widget.title),
      ),
      body: ClaimFolderView(
        sessionId: '288', // fake session id
        carBrand: CarBrandType.kiaMorning,
        onError: (message) {
          // handle error here.
        },
        uTokenKey: '', // Liên hệ để có token key
      ),
    );
  }
}