In this example, I will share how can do float Text Widget around an Image Widget in Flutter. You could use drop_cap_text library to get this behavior. Usage is something like this:
1 2 3 4 5 6 7 8 9 |
DropCapText( loremIpsumText, dropCap: DropCap( width: 100, height: 100, child: Image.network( 'https://www.codemate.com/wp-content/uploads/2017/09/flutter-logo.png') ), ), |
If you like this question & answer and want to contribute, then write your question & answer and email to freewebmentor[@]gmail.com. Your question and answer will appear on FreeWebMentor.com and help other developers.