Skip to content

Latest commit

 

History

History
28 lines (25 loc) · 472 Bytes

File metadata and controls

28 lines (25 loc) · 472 Bytes
InkWell(
    onTap: () {
    Navigator.push(
        context,
        MaterialPageRoute(
        builder: (context) => DrawerOpenScreen(),
        ),
    );
    },
    child: Container(
    height: Get.height / 17.82,
    width: Get.width / 8.22,
    decoration: BoxDecoration(
        color: green,
        shape: BoxShape.circle,
    ),
    child: Icon(
        Icons.arrow_forward,
        color: white,
        size: Get.height / 29.71,
    ),
    ),
),