Flutter☞ListView组件的使用

   ListView(
      children: [
        new ListTile(
          // 列表图标
          leading: Icon(Icons.access_time),
          // 列表标题
          title: Text('时间'),
          // 点击事件
          onLongPress: ()=>{},
        ),
        ListTile(
          leading: Icon(Icons.add_photo_alternate),
          title: Text('添加图片'),
        ),
        ListTile(
          leading: Icon(Icons.android),
          title: Text('Android'),
        ),
        ListTile(
          leading: Icon(Icons.verified_user),
          title: Text('安全'),
        ),
      ],
    );

你可能感兴趣的:(Flutter☞ListView组件的使用)