It is possible to convert flutter code to flutterflow? - flutter

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.

Related

how to use multi pimage picker using Obx Getx in flutter and show in UI

what is the right way to use a multi-image picker using Getx OBX state management?
iam using Obx and the fileimage not showing the selected image.
can you show your code here, maybe there is an error in debug. or you can see through the tutorial here. I've followed the tutorial and it worked

How to modify Flutter widgets from the code behind

I am just learning flutter and I am wondering if it is possible to change the properties of a widget from the code.
I am familiar with WPF, where I can just access the Elements by a name that is given to them (e.g. "btnIncreaseCounter") and then say btnIncreaseCounter.Background = Colors.Orange.
Does a similar concept exist in Flutter? Or how do I modify my widgets from the code?a
You can do it in flutter using key of particular widget,
but flutter is not designed to code this way, flutter provides you with much easy and best practices to achieve the same.

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!

Alternative way to flutter webview

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

Flutter ViewPager and PageTransformer

I want to implement something like this from Android in Flutter. Content will be dynamically created. I don't want to use flutter swiper because it has bugs and it is not maintained anymore. How can I implement this?
Another example is here
Edit: Let me clarify something: I don't want any code or work from you. Just asking the logic for how to do ViewPager and PageTransformer in Flutter. Because I tried PageView, Stack to implement this but I can not establish the logic.