arrwoImageWidget static method

Widget arrwoImageWidget({
  1. Color bgColor = Colors.transparent,
  2. Color? imageColor,
})

Implementation

static Widget arrwoImageWidget({
  Color bgColor = Colors.transparent,
  Color? imageColor,
}) {
  return Container(
    padding: EdgeInsets.fromLTRB(0, 0, 0, 0),
    color: bgColor,
    child: Image(
      image: AssetImage(
        'assets/arrow_right.png',
        package: 'flutter_baseui_kit',
      ),
      width: 5.w_pt_demo,
      height: 18.h_pt_demo,
      fit: BoxFit.contain,
      color: imageColor,
    ),
  );
  // return Container(
  //   // color: Colors.blue,
  //   child: Image(
  //     image: const AssetImage(
  //       'assets/arrow_right.png',
  //       package: 'flutter_baseui_kit',
  //     ),
  //     width: 6.w_bj,
  //     height: 18.h_bj,
  //     fit: BoxFit.contain,
  //   ),
  // );
}