Skip to content

Commit

Permalink
Center align camera stream loading text
Browse files Browse the repository at this point in the history
  • Loading branch information
Gold872 committed Dec 17, 2023
1 parent 26caaf1 commit dda66ae
Showing 1 changed file with 6 additions and 3 deletions.
9 changes: 6 additions & 3 deletions lib/widgets/nt_widgets/multi-topic/camera_stream.dart
Original file line number Diff line number Diff line change
Expand Up @@ -135,9 +135,12 @@ class CameraStreamWidget extends NTWidget {
children: [
CustomLoadingIndicator(),
const SizedBox(height: 10),
Text((ntConnection.isNT4Connected)
? 'Waiting for Camera Stream connection...'
: 'Waiting for Network Tables Connection...'),
Text(
(ntConnection.isNT4Connected)
? 'Waiting for Camera Stream connection...'
: 'Waiting for Network Tables Connection...',
textAlign: TextAlign.center,
),
],
),
],
Expand Down

0 comments on commit dda66ae

Please sign in to comment.