From 5eb202fd54b9a9ec4e7d38edc7375d8bc5001322 Mon Sep 17 00:00:00 2001 From: EddyVerbruggen Date: Thu, 21 May 2015 21:25:21 +0200 Subject: [PATCH] #36 iOS: top toast a little lower, bottom toast a bit higher --- src/ios/Toast+UIView.m | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/ios/Toast+UIView.m b/src/ios/Toast+UIView.m index af60759..d84584d 100644 --- a/src/ios/Toast+UIView.m +++ b/src/ios/Toast+UIView.m @@ -12,7 +12,7 @@ static const CGFloat CSToastMaxWidth = 0.8; // 80% of parent vie static const CGFloat CSToastMaxHeight = 0.8; // 80% of parent view height static const CGFloat CSToastHorizontalPadding = 16.0; static const CGFloat CSToastVerticalPadding = 12.0; -static const CGFloat CSToastTopBottomOffset = 10.0; +static const CGFloat CSToastTopBottomOffset = 20.0; static const CGFloat CSToastCornerRadius = 20.0; static const CGFloat CSToastOpacity = 0.8; static const CGFloat CSToastFontSize = 13.0;