getRightView method

Widget? getRightView(
  1. BuildContext context
)

Implementation

Widget? getRightView(BuildContext context) {
  return (style.style == TUIOverlayMobileStyleType.right)
      ? Positioned(
          top: 0,
          right: 0,
          child: SizedBox(
            width: MediaQuery.of(context)
                .size
                .width, // Set the width to the screen width
            child: Row(
              children: [
                const Spacer(),
                Flexible(
                  fit: FlexFit.loose,
                  child: Center(
                    child: TUIIconButton(
                      type: TUIIconButtonType.ghost,
                      size: TUIIconButtonSize.px40,
                      iconData: style.getIcon(),
                      onPressed: style.action,
                    ),
                  ),
                ),
              ],
            ),
          ),
        )
      : null;
}