mobile_signal 0.0.6
mobile_signal: ^0.0.6 copied to clipboard
Check mobile signal strength.
example/lib/main.dart
import 'package:flutter/material.dart';
import 'package:mobile_signal_example/widgets/widgets.dart';
void main() {
runApp(const MyApp());
}
class MyApp extends StatelessWidget {
const MyApp({super.key});
@override
Widget build(BuildContext context) => MaterialApp(
title: 'Mobile Signal Demo',
theme: ThemeData(
colorScheme: ColorScheme.fromSeed(seedColor: Colors.blue),
useMaterial3: true,
),
home: const SignalMonitorPage(),
);
}