Skip to main content

Show number row in my android phone || show Numbers and alphabets in keypad

Solution:

1.Goto play store using the below link and install the app named swiftkey keyboard app..

https://play.google.com/store/apps/details?id=com.touchtype.swiftkey&hl=en




 

Open the app click layout and keys..In that option called number row..Set that switch on..In every keyboard you will be had an option that number row...


Comments

Popular posts from this blog

Local variable for "serviceWorkerVersion" is deprecated in flutter

Problem:  Local variable for "serviceWorkerVersion" is deprecated. Use "{{flutter_service_worker_ version}}" template token instead. See  https://docs.flutter.dev/ platform-integration/web/ initialization  for more details. While try to run my flutter app in chrome it shows the above error. Solution: In script file it shows as like below < script > // The value below is injected by flutter build, do not touch. var serviceWorkerVersion = null ; </ script > Replace with below.It will works fine. < script > // The value below is injected by flutter build, do not touch. var serviceWorkerVersion = "{{flutter_service_worker_ version}}" ; </ script >