Fix null value

Text widget cannot accept a null value as the text value.
This commit is contained in:
Vishesh Handa
2019-02-23 02:11:43 +01:00
parent 9f9c472255
commit 4029971a63

View File

@ -142,7 +142,7 @@ class VersionNumberTile extends StatefulWidget {
} }
class VersionNumberTileState extends State<VersionNumberTile> { class VersionNumberTileState extends State<VersionNumberTile> {
String versionText; String versionText = "";
@override @override
void initState() { void initState() {