Skip to content

Commit

Permalink
🚀 First release?
Browse files Browse the repository at this point in the history
  • Loading branch information
iqfareez committed Nov 21, 2020
1 parent 39338b0 commit 8f94e1f
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 1 deletion.
2 changes: 1 addition & 1 deletion lib/app.dart
Original file line number Diff line number Diff line change
Expand Up @@ -71,7 +71,7 @@ class _NoiseAppState extends State<NoiseApp> {

@override
Widget build(BuildContext context) {
if (chartData.length == 25) {
if (chartData.length >= 25) {
chartData.removeAt(0);
}
return Scaffold(
Expand Down
1 change: 1 addition & 0 deletions lib/main.dart
Original file line number Diff line number Diff line change
Expand Up @@ -14,6 +14,7 @@ class _MyAppState extends State<MyApp> {
@override
Widget build(BuildContext context) {
return MaterialApp(
// debugShowCheckedModeBanner: false,
title: 'db Meter Flutter',
home: NoiseApp(),
darkTheme: ThemeData.dark().copyWith(),
Expand Down

0 comments on commit 8f94e1f

Please sign in to comment.