How to write a large paragraph in Sketchware?

Though you can write limited characters in text properties of TextView if you want to write larger paragraphs, or copy multiple paragraphs at once, you can follow any of the methods below:

Method 1: Large paragraphs in a TextView
• Insert a TextView widget in View area of your project.
• Then in Logic area under onCreate event, use the block TextView textview1 setText ......., and in the space for text paste the complete paragraph you want to display.
Watch the video below to understand better.


Method 2Large paragraphs in a WebView
• Convert your text to HTML. An easy way is to copy your complete text in Blogger and then copy it's HTML version.
• Insert a WebView in View area of your project.
• Then in Logic area under onCreate event, use the block WebView webview1 loadUrl......., and in the space for text, write data:text/html, <html>Paste your HTML code here</html>
• Using this method you can write words with different fonts, colors, sizes and styles in the same paragraph.