flutter_drivekit_trip_analysis 1.7.0
flutter_drivekit_trip_analysis: ^1.7.0 copied to clipboard
This is the Flutter plugin for DriveQuant's DriveKit Trip Analysis component.
import 'package:flutter/material.dart';
void main() => runApp(const MyApp());
class MyApp extends StatelessWidget {
const MyApp({super.key});
@override
Widget build(BuildContext context) {
return const MaterialApp(home: HomePage());
}
}
class HomePage extends StatefulWidget {
const HomePage({super.key});
@override
State<HomePage> createState() => _HomePageState();
}
class _HomePageState extends State<HomePage> {
@override
Widget build(BuildContext context) {
return Scaffold(
appBar: AppBar(title: const Text('DriveKitTripAnalysis Example')),
body: const Column(
children: [
Text('Please refer to the main flutter example SDK'),
Text(
'https://github.com/DriveQuantPublic/flutter-drivekit/tree/main/example',
),
],
),
);
}
}