Skip to content

Commit

Permalink
remove indiactor
Browse files Browse the repository at this point in the history
  • Loading branch information
git-elliot committed Nov 10, 2024
1 parent 17a9b2e commit 29f5c58
Show file tree
Hide file tree
Showing 3 changed files with 2 additions and 2 deletions.
1 change: 1 addition & 0 deletions integration_test/app_test.dart
Original file line number Diff line number Diff line change
Expand Up @@ -103,6 +103,7 @@ void main() {
final portScanButton = find.byKey(Keys.portScanButton);
await tester.tap(portScanButton);
await tester.pumpAndSettle(const Duration(seconds: 20));
await tester.pump();
//TODO: not passing in github actions
expect(find.byType(AdaptiveListTile), findsAny);
});
Expand Down
2 changes: 1 addition & 1 deletion lib/pages/home_page.dart
Original file line number Diff line number Diff line change
Expand Up @@ -194,7 +194,7 @@ class _WifiDetailState extends State<HomePage> {
} else if (snapshot.hasError) {
return const Text("Unable to fetch WiFi details");
} else {
return const CircularProgressIndicator.adaptive();
return const Text('Loading...');
}
},
),
Expand Down
1 change: 0 additions & 1 deletion lib/pages/host_scan_page/widgets/host_scan_widget.dart
Original file line number Diff line number Diff line change
Expand Up @@ -25,7 +25,6 @@ class HostScanWidget extends StatelessWidget {
child: Column(
mainAxisAlignment: MainAxisAlignment.center,
children: [
const CircularProgressIndicator(),
const SizedBox(
height: 30,
),
Expand Down

0 comments on commit 29f5c58

Please sign in to comment.