Lesson 03

// Some code
class Lesson03 extends StatelessWidget {
  const Lesson03({super.key});

  @override
  Widget build(BuildContext context) {
    return Scaffold(
      backgroundColor: Color(0xFFF4F5F9),

      body: ListView(
        children: [
          ListTile(
            leading: Image.asset('assets/profile.png'),
            title: Text(
              'about me',
              style: TextStyle(fontSize: 12, fontWeight: FontWeight.w600),
            ),
            trailing: Icon(Icons.arrow_forward_ios),
          ),
          ListTile(
            leading: Image.asset('assets/box.png'),
            title: Text(
              'My orders',
              style: TextStyle(fontSize: 12, fontWeight: FontWeight.w600),
            ),
            trailing: Icon(Icons.arrow_forward_ios),
          ),
        ],
      ),
    );
  }
}

Last updated