19 - Todo App - 2
import 'package:flutter/material.dart'; void main() => runApp(MyApp()); class MyApp extends StatelessWidget { @override Widget build(BuildContext context) { return MaterialApp( home: Alert(), ); } } class Alert extends StatefulWidget { @override _AlertState createState() => _AlertState(); } class _AlertState extends State { List listViewdata = [ "a", "b", "c", "d", "e", "f", ]; @override Widget ..