Questions tagged [ui]
User Interface _ the application interface designated for the end users
133 questions
-1 votes
2 answers
148 views
Is there a model or some implementation logic for web layouts?
I am making an application in which the user types BDD scenarios of using a webpage. From this retrieve the widgets and their functionalities and make a "webpage prototype" in Figma. I am ...
1 vote
3 answers
868 views
Architecture to avoid circular imports in Python, specifically a flask server
I have a flask server which uses a controller-service-resource model. For simplification it is like this: Controller(parses requests, dispatches to A or B): ServiceA ServiceB However there are ...
1 vote
3 answers
383 views
How to avoid duplicating Create and Update UIs in CRUD apps
For most apps I've built which deal with CRUD operations, I end up two very similar UI pages: one for the creation of the object, one for updating it. An example would be StackExchange's UI for ...
1 vote
1 answer
161 views
Silently re-using data vs requiring the user to pass a "re-use" argument?
Context After creating a (bash) CLI interface that creates self-signed SSL certificates (for onion domains), the user can choose to re-use some of the data that is created in past runs. For example, a ...
0 votes
0 answers
685 views
What approach for this kind of drawing application in C#/WPF
I've got experience with WPF, but I have always been creating standard UI's. I want to build a drawing application for electrical wiring diagrams (single-wire diagrams). Example of the kind of ...
0 votes
3 answers
517 views
UI/UX design feels like waterfall, What do you think should be the proper process?
I'm currently working as Fullstack developer, our frontend is being built in React. Our current process involves: The client / product owner describes a feature to the UI / UX designer. The designer ...
1 vote
2 answers
154 views
How to maintain cohesion, loose coupling, and SRP when building a reporting tool?
I'm building a reporting tool with three core layers: Extract data from a database Transform this data to compute business metrics Display these metrics in a report (a heavily formatted Excel export ...
0 votes
1 answer
299 views
Wrapping the UI framework
I want to write an application where I would delegate certain functionalities to 3rd party libraries. To make sure the code remains modular, I want to put these libraries behind an interface so I can ...