Remove unnecessary center widget

This commit is contained in:
Vishnu Mohandas 2020-07-30 12:37:58 +05:30
parent 1bfb426341
commit 85ecdc3c9b

View file

@ -17,13 +17,11 @@ class _LoadingPhotosWidgetState extends State<LoadingPhotosWidget> {
loadWidget,
Padding(
padding: const EdgeInsets.all(16.0),
child: Center(
child: Text(
"Hang on tight, your photos will appear in a jiffy! 🐣",
textAlign: TextAlign.center,
),
child: Text(
"Hang on tight, your photos will appear in a jiffy! 🐣",
textAlign: TextAlign.center,
),
)
),
],
),
);