myBottomBar method

Widget myBottomBar()

Implementation

Widget myBottomBar() => BottomAppBar(
      clipBehavior: Clip.antiAlias,
      shape: CircularNotchedRectangle(),
      child: Ink(
        height: 50.0,
        decoration: BoxDecoration(
            gradient: LinearGradient(colors: UIData.kitGradients)),
        child: Row(
          mainAxisAlignment: MainAxisAlignment.spaceAround,
          crossAxisAlignment: CrossAxisAlignment.center,
          children: <Widget>[
            SizedBox(
              height: double.infinity,
              child: InkWell(
                radius: 10.0,
                splashColor: Colors.yellow,
                onTap: () {},
                child: Center(
                  child: Text(
                    "ADD TO WISHLIST",
                    style: TextStyle(
                        fontSize: 12.0,
                        fontWeight: FontWeight.bold,
                        color: Colors.white),
                  ),
                ),
              ),
            ),
            SizedBox(
              width: 20.0,
            ),
            SizedBox(
              height: double.infinity,
              child: InkWell(
                onTap: () {},
                radius: 10.0,
                splashColor: Colors.yellow,
                child: Center(
                  child: Text(
                    "ORDER PAGE",
                    style: TextStyle(
                        fontSize: 12.0,
                        fontWeight: FontWeight.bold,
                        color: Colors.white),
                  ),
                ),
              ),
            ),
          ],
        ),
      ),
    );