Untitled

 avatar
unknown
plain_text
2 years ago
679 B
3
Indexable
appBar: AppBar(
        backgroundColor: Colors.white,
        elevation: 0,
        title: Text(
          'username',
          style: TextStyle(
            fontWeight: FontWeight.bold,
            fontSize: 20,
            color: Colors.black,
          ),
        ),
        actions: [
          Icon(
            Icons.add_box_outlined,
            color: Colors.black,
            size: 30,
          ),
          SizedBox(
            width: 20,
          ),
          Icon(
            Icons.menu,
            color: Colors.black,
            size: 30,
          ),
          SizedBox(
            width: 20,
          ),
        ],
      ),
Editor is loading...