this post was submitted on 21 Aug 2023
12 points (92.9% liked)

General Programming Discussion

7708 readers
1 users here now

A general programming discussion community.

Rules:

  1. Be civil.
  2. Please start discussions that spark conversation

Other communities

Systems

Functional Programming

Also related

founded 5 years ago
MODERATORS
 

Do you prefer to use UI frameworks which make a distinction between UI files and application code (e.g. Qt, GTK, Angular) or do you prefer to define the UI in the application code (e.g. Flutter, Jetpack Compose, React)?

top 5 comments
sorted by: hot top controversial new old
[–] [email protected] 5 points 1 year ago

Always separate where possible. In my experience things can end up a tangled mess really easily.

I'm a big fan of mvvm. Keeps everything separate and simple.

[–] [email protected] 3 points 1 year ago* (last edited 1 year ago)

I did both, separated is my way to go. Having both separated makes things easier and cleaner IMHO. You can have a designer to create these seperated layouts, which is pretty cool when you're a UI/UX designer. The ability to reuse the same code with a different UI layout. And of course generates less conflicts on Git when someone worked on the code while you where on the UI.

[–] [email protected] 2 points 1 year ago

I prefer to define the UI in application code, because separation introduces a lot of overhead for bindings.

Nevertheless, I think it is important separate UI code from business logic.

[–] [email protected] 1 points 1 year ago

Separating them allows you to add additional interfaces, such as command-line interfaces, APIs and web pages

[–] [email protected] 1 points 1 year ago

depends what you mean by application code.. I'd say if your business logic is exclusively used by a ui feature the best is to keep them together. but you probably want to abstract away things like data access. I found working with a nx monorepo helps reasoning about how to structure your code.