skip to Main Content

Flutter: iPad status bar color cut in half

When I try to set status bar color using library (flutter_statusbarcolor_ns) or directly using direct flutter code: void _setStatusBarColor(Color color) { SystemChrome.setSystemUIOverlayStyle(SystemUiOverlayStyle( statusBarColor: color, )); } Status bar color is not getting set properly. It is working in ipad portrait…

VIEW QUESTION

Ios swift – Adding Tap gesture recognizer to only text of UITextfield which is Uneditable

I am adding tap gesture recognizer in a table view like this. # let tapGestureRecognizer = CustomTapGestureRecogniser(target: self, action: #selector(openMethod(tapGestureRecognizer:))) tapGestureRecognizer.data = indexPath.row cell.textField.isUserInteractionEnabled = true cell.textField.addGestureRecognizer(tapGestureRecognizer) But the whole textfield is clickable, I want this only on click of…

VIEW QUESTION
Back To Top
Search