2022年6月26日星期日

scrollable ListView

 ListView(

  shrinkWrap: true,

  padding: const EdgeInsets.all(20.0),

  physics: const AlwaysScrollableScrollPhysics(),

  children: report.data.map((e) {

    return Text(

      DateFormat.yMd().format(e.bmi.createdAt),

      style: FlutterFlowTheme.of(context)

          .bodyText1

          .override(

        fontFamily: 'Montserrat',

        color: Color(0xFF0696B9),

        fontSize: 18,

        fontWeight: FontWeight.w500,

      ),

    );

  }).toList(),

)

沒有留言:

發佈留言