steps_count 0.0.2
steps_count: ^0.0.2 copied to clipboard
A Flutter plugin for counting steps and managing background step tracking services on Android devices.
import 'package:flutter/material.dart';
import 'package:steps_count_example/app_wrapper.dart';
void main() {
runApp(const MyApp());
}
class MyApp extends StatelessWidget {
const MyApp({super.key});
@override
Widget build(BuildContext context) {
return MaterialApp(
title: 'Steps Count',
theme: ThemeData(
primarySwatch: Colors.blue,
useMaterial3: true,
fontFamily: 'Roboto',
),
home: const AppWrapper(),
debugShowCheckedModeBanner: false,
);
}
}