File tree Expand file tree Collapse file tree 1 file changed +0
-3
lines changed
compose/ui/ui/src/uikitMain/kotlin/androidx/compose/ui/platform Expand file tree Collapse file tree 1 file changed +0
-3
lines changed Original file line number Diff line number Diff line change @@ -558,7 +558,6 @@ internal class UIKitTextInputService(
558558 ).also {
559559 view.addSubview(scrollView)
560560
561- // it.setTintColor(UIColor.blackColor) // forward colors here
562561 scrollView.textView = it
563562
564563// scrollView.backgroundColor = if (useNativeInputHandling) UIColor.redColor.colorWithAlphaComponent(0.5) else UIColor.clearColor
@@ -700,7 +699,6 @@ internal class UIKitTextInputService(
700699 * @param text A string object representing the character typed on the system keyboard.
701700 */
702701 override fun insertText (text : String ) {
703- println (" insertText: $text " )
704702 if (text == " \n " ) {
705703 if (runImeActionIfRequired()) {
706704 return
@@ -777,7 +775,6 @@ internal class UIKitTextInputService(
777775 * @param text A string to replace the text in range.
778776 */
779777 override fun replaceRange (range : TextRange , text : String ) {
780- println (" replaceRange: $text in range = $range " )
781778 sendEditCommand(
782779 SetComposingRegionCommand (range.start, range.end),
783780 SetComposingTextCommand (text, 1 ),
You can’t perform that action at this time.
0 commit comments