I’m new to Wappler, and in the process of exploring the framework.
If I discover some lack of functionality, or if I just prefer using another external library - such as a preference for another emoji picker, is it possible to use that within Wappler? How would I import an external library in Wappler?
Assuming you are talking about client side libraries, there are two ways to do this.
Use the JS/CSS includes of the library on the page, and write your custom JS code to initialize the library. You can call the initialization function on some event or via page-flow that is on autorun.
You might have to write more JS functions to use the library with Wappler’s components.
You cannot use libraries like they are used with React, so make sure to check the documentation of the library you want to use.
Write your own custom component. With this, using the library is still the same - by including JS/CSS files, but the UX is better as you can use Wappler UI rather than JS functions to use the library.