marcos930807/awesomeDialogs

please create dynamic close icon position

eggysudianto opened this issue · 0 comments

can you make closeIcon position dynamic free set by dev?

if (showCloseIcon!)
            Positioned(
              right: 50.0,
              top: 75.0,
              child: GestureDetector(
                onTap: () {
                  onClose.call();
                },
                child: closeIcon ?? const Icon(Icons.close),
              ),
            ),