2023年8月27日星期日

hide scrollbar

  ScrollConfiguration(

      behavior: ScrollConfiguration.of(context).copyWith(scrollbars: false),
      child: ...,),

2023年8月25日星期五

circle container

 Container(

          margin: EdgeInsets.all(100.0),
          decoration: BoxDecoration(
            color: Colors.orange,
            shape: BoxShape.circle
          ),
        )