Advertisement
joaopaulofcc

Untitled

Sep 26th, 2020
1,815
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Dart 1.28 KB | None | 0 0
  1. import "package:flutter/material.dart";
  2.  
  3. void main() => runApp(MyApp());
  4.  
  5. class MyApp extends StatelessWidget  {
  6.  
  7.   @override
  8.   Widget build(BuildContext inContext) {
  9.     return MaterialApp(home : Scaffold(
  10.       body : ListView(
  11.         children : [
  12.           ListTile(leading : Icon(Icons.gif), title : Text("1")),
  13.           ListTile(leading : Icon(Icons.book), title : Text("2")),
  14.           ListTile(leading : Icon(Icons.call), title : Text("3")),
  15.           ListTile(leading : Icon(Icons.dns), title : Text("4")),
  16.           ListTile(leading : Icon(Icons.cake), title : Text("5")),
  17.           ListTile(leading : Icon(Icons.pets), title : Text("6")),
  18.           ListTile(leading : Icon(Icons.poll), title : Text("7")),
  19.           ListTile(leading : Icon(Icons.face), title : Text("8")),
  20.           ListTile(leading : Icon(Icons.home), title : Text("9")),
  21.           ListTile(leading : Icon(Icons.adb), title : Text("10")),
  22.           ListTile(leading : Icon(Icons.dvr), title : Text("11")),
  23.           ListTile(leading : Icon(Icons.hd), title : Text("12")),
  24.           ListTile(leading : Icon(Icons.toc), title : Text("3")),
  25.           ListTile(leading : Icon(Icons.tv), title : Text("14")),
  26.           ListTile(leading : Icon(Icons.help), title : Text("15"))
  27.         ]
  28.       )
  29.     ));
  30.   }
  31.  
  32. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement