Alternative way to flutter webview - flutter

How to display a piece of code in flutter application like image below
I tried to use flutter_webview package but i didn't like it.
I am asking if is there any alternative way i can use to display them

To show code in your flutter app you can use markdown and next package:
https://pub.dev/packages/flutter_markdown

Related

It is possible to convert flutter code to flutterflow?

I am learning flutterflow at the moment. I came across Flutter and I was wondering, could I use Flutter code, and add it to my project and finish it with flutterflow?
for flutterflow you can only add your flutter code either in custom widgets , custom functions or custom actions.

Is it possible to wrap Poppler with Flutter?

It is my hobby project. I want to view pdf documents in my Flutter app.
I want to use Poppler C++ library and wrap it with Flutter using dart ffi.
I just checked the library but can't find any way to start.
Is it possible to wrap it with Flutter? If yes, I need a guideline to start the project.
Thanks a lot!

Some of material design icons are not defined flutter

Hey so I have this problem, I want to use some icons that are listed here but in my flutter it says the name isn't defined. I already tried to do flutter clean and the problem still exists (I need to use Icons.password and Icons.person_off). Do you have any idea how to fix it? Thanks in advance
Go on to the pubspec.yaml file and enable the material dependecies like
uses-material-design: true also if you still not found your icon then go to https://fonts.google.com/icons this page and search for your icon and after clicking on your icon it will show you the code for implementing that icon on web, android, flutter and IOS.

I'm trying to make custom share option in flutter but i have no idea how to make it in flutter

enter image description here
I'm trying to make custom share option in flutter but i have no idea how to make it in flutter

show and Interact with SVG in flutter

I have SVG photo which have css styling and java script to make effects to the photo. i try to use the image in flutter using flutter_svg but the problem is it show only the picture .. my problem i hope css hover style for paths working and can read java script events from flutter
You could try and load the svg in a webview perhaps but considering webview for flutter is in preview stages, it might not have all the functionalities needed.