Skip to content

Instantly share code, notes, and snippets.

@hectorAguero
hectorAguero / main.dart
Last active March 27, 2021 17:13
Different ways to show or not show null Strings in Text Widgets in Flutter
import 'package:flutter/material.dart';
void main() {
runApp(MyApp());
}
class MyApp extends StatefulWidget {
@override
_MyAppState createState() => _MyAppState();
}