<?xml version="1.0" encoding="UTF-8"?>
<rss version="2.0" xmlns:atom="http://www.w3.org/2005/Atom" xmlns:dc="http://purl.org/dc/elements/1.1/">
  <channel>
    <title>DEV Community: Jvan Nichervan</title>
    <description>The latest articles on DEV Community by Jvan Nichervan (@jvan_nichervan_7b34896c74).</description>
    <link>https://dev.to/jvan_nichervan_7b34896c74</link>
    <image>
      <url>https://media2.dev.to/dynamic/image/width=90,height=90,fit=cover,gravity=auto,format=auto/https:%2F%2Fdev-to-uploads.s3.amazonaws.com%2Fuploads%2Fuser%2Fprofile_image%2F1503138%2F7e18014c-4b07-421a-8931-fc7ad0e4c661.jpg</url>
      <title>DEV Community: Jvan Nichervan</title>
      <link>https://dev.to/jvan_nichervan_7b34896c74</link>
    </image>
    <atom:link rel="self" type="application/rss+xml" href="https://dev.to/feed/jvan_nichervan_7b34896c74"/>
    <language>en</language>
    <item>
      <title>Main Features of Flet:</title>
      <dc:creator>Jvan Nichervan</dc:creator>
      <pubDate>Wed, 13 Nov 2024 19:39:01 +0000</pubDate>
      <link>https://dev.to/jvan_nichervan_7b34896c74/main-features-of-flet-f8g</link>
      <guid>https://dev.to/jvan_nichervan_7b34896c74/main-features-of-flet-f8g</guid>
      <description>&lt;ol&gt;
&lt;li&gt;
&lt;strong&gt;From idea to app in a minutes&lt;/strong&gt;:An internal tool or a dashboard for your team, weekend project, data entry form, kiosk app or high-fidelity prototype - Flet is an ideal framework to quickly hack a great-looking interactive apps to serve a group of users.&lt;/li&gt;
&lt;/ol&gt;

&lt;p&gt;2.&lt;strong&gt;Simple architecture&lt;/strong&gt;:No more complex architecture with JavaScript frontend, REST API backend, database, cache, etc. With Flet you just write a monolith stateful app in Python only and get multi-user, realtime Single-Page Application (SPA).&lt;/p&gt;

&lt;p&gt;3.&lt;strong&gt;Batteries included&lt;/strong&gt;: To start developing with Flet, you just need your favorite IDE or text editor. No SDKs, no thousands of dependencies, no complex tooling - Flet has built-in web server with assets hosting and desktop clients.&lt;/p&gt;

&lt;p&gt;4.&lt;strong&gt;Powered by Flutter&lt;/strong&gt;:Flet UI is built with Flutter, so your app looks professional and can be delivered to any platform. Flet simplifies Flutter model by combining smaller "widgets" into ready-to-use "controls" with imperative programming model.&lt;/p&gt;

&lt;p&gt;5.&lt;strong&gt;Speaks your language&lt;/strong&gt;: Flet is language-agnostic, so anyone on your team could develop Flet apps in their favorite language. Python is already supported, Go, C# and others are coming next.&lt;/p&gt;

&lt;p&gt;6.&lt;strong&gt;Deliver to any device&lt;/strong&gt;: Deploy Flet app as a web app and view it in a browser. Package it as a standalone desktop app for Windows, macOS and Linux. Install it on mobile as PWA or view via Flet app for iOS and Android.&lt;/p&gt;

</description>
      <category>flet</category>
    </item>
    <item>
      <title>What is the flet ?</title>
      <dc:creator>Jvan Nichervan</dc:creator>
      <pubDate>Wed, 13 Nov 2024 19:33:17 +0000</pubDate>
      <link>https://dev.to/jvan_nichervan_7b34896c74/what-is-the-flet--5a9l</link>
      <guid>https://dev.to/jvan_nichervan_7b34896c74/what-is-the-flet--5a9l</guid>
      <description>&lt;p&gt;Flet is a framework that allows building web, desktop and mobile applications in Python without prior experience in frontend development.&lt;/p&gt;

&lt;p&gt;You can build a UI for your program with Flet controls which are based on Flutter by Google. Flet goes beyond merely wrapping Flutter widgets. It adds its own touch by combining smaller widgets, simplifying complexities, implementing UI best practices, and applying sensible defaults. This ensures that your applications look stylish and polished without requiring additional design efforts on your part.&lt;/p&gt;

&lt;p&gt;`import flet as ft&lt;/p&gt;

&lt;p&gt;def main(page: ft.Page):&lt;br&gt;
    page.title = "Flet counter example"&lt;br&gt;
    page.vertical_alignment = ft.MainAxisAlignment.CENTER&lt;/p&gt;

&lt;div class="highlight js-code-highlight"&gt;
&lt;pre class="highlight plaintext"&gt;&lt;code&gt;txt_number = ft.TextField(value="0", text_align=ft.TextAlign.RIGHT, width=100)

def minus_click(e):
    txt_number.value = str(int(txt_number.value) - 1)
    page.update()

def plus_click(e):
    txt_number.value = str(int(txt_number.value) + 1)
    page.update()

page.add(
    ft.Row(
        [
            ft.IconButton(ft.icons.REMOVE, on_click=minus_click),
            txt_number,
            ft.IconButton(ft.icons.ADD, on_click=plus_click),
        ],
        alignment=ft.MainAxisAlignment.CENTER,
    )
)
&lt;/code&gt;&lt;/pre&gt;

&lt;/div&gt;

&lt;p&gt;ft.app(main)`&lt;/p&gt;

</description>
      <category>flet</category>
      <category>python</category>
      <category>ui</category>
    </item>
  </channel>
</rss>
