smooth_compass 2.0.17 smooth_compass: ^2.0.17 copied to clipboard
smooth compass with animated rotation and custom widgets support for both(android and ios)
import 'package:example/views/home_page.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(
home: HomePage(),
);
}
}