positionSignButton method

Expanded positionSignButton()

Implementation

Expanded positionSignButton() {
  return Expanded(
    child: Material(
        color: Colors.transparent,
        child: InkWell(
          onTap: showEditSignPosition ? onEditSignPosition : null,
          child: Row(
            mainAxisAlignment: MainAxisAlignment.end,
            children: [
              Text(
                'Ver posiciĆ³n de firma',
                style: showEditSignPosition
                    ? const TextStyle().labelActionBlue
                    : const TextStyle().labelActionBlue.copyWith(
                          color: Palette.GRAY_50.withOpacity(0.5),
                        ),
              ),
              const SizedBox(width: 2),
              Icon(
                Icons.chevron_right,
                color: showEditSignPosition
                    ? Palette.BLUE_500
                    : Palette.GRAY_50.withOpacity(0.5),
              ),
            ],
          ),
        )),
  );
}