Hasan Sezer Taşan

Results 159 comments of Hasan Sezer Taşan

I just discovered another package that lets you write HTML inside python, check it out: [twidi/mixt: Write html components directly in python and you have a beautiful but controversial MIXTure](https://github.com/twidi/mixt/)

@usr-ein thank you for answering. You can fork the repo and implement the things you need. It has a very simple structure and pattern. I was thinking of something like...

> a very similar project with a reach components library: > https://github.com/amisadmin/fastapi-amis-admin > can compare with your library, are there any plans for SSR? I think Amis docs has a...

Many of my applications are data-first applications with many tables that presented to the users. Plain `table` approach is not enough for good user experience but DataTablesJS is. Here are...

> To the point where I think FastUI including a built in datatable component is way out of scope for the aims of this project. You sound right but my...

@paddymul Thank you for your answer. #88 now adds Custom Components support but I'm not sure how we will be able to start a component that initialized via JavaScript snippet....

Great job @ischaojie, when will we be having this feature?

I simply tried to run this code block: ```python from fastui import prebuilt_html from flask import Flask app = Flask(__name__) @app.get("/robots.txt") async def robots_txt() -> str: return "User-agent: *\nAllow: /"...