The Wayback Machine - https://web.archive.org/web/20220806085012/https://github.com/topics/user-interface
Skip to content
#

user-interface

User interface (UI) design or user interface engineering is the design of user interfaces for machines and software, such as computers, home appliances, mobile devices, and other electronic devices, with the focus on maximizing usability and the user experience. The goal of user interface design is to make the user's interaction as simple and efficient as possible, in terms of accomplishing user goals (user-centered design).

Here are 1,400 public repositories matching this topic...

sourcebox
sourcebox commented May 31, 2021

I'm working on an application which mainly consists for sliders for parameter control. For better user experience, it would be nice to offer two features: reset to default and fine control.

On VST plugins this is normally done via double-clicks and/or modifier keys. E.g. double-clicking resets the slider to a default (mostly 0), alternatively Ctrl-/Cmd-Klick also does it. For fine control, ofte

feature New feature or request good first issue Good for newcomers widget
PySimpleGUI
klieret
klieret commented May 28, 2019

Type of Issues (Enhancement, Error, Bug, Question)

Bug:

  1. Initialize Window
  2. Show it (window.Read())
  3. Run window.Disable()
  4. The whole desktop environment freezes, nothing is clickable anymore
  5. Change to tty terminal and kill application
  6. Things are normal again

Operating System

Ubuntu 16.04 LTS 64 bit

Python version

Python 3.5.2

PySi

enhancement New feature or request good first issue Good for newcomers documentation Docs need updating Performance Improvement
edwinvandeven
edwinvandeven commented Jul 15, 2019

Nothing happens at the moment when clicking the form help: https://tabler-react.com/form-elements (It's next to the zip code box).

<Form.Help message={<><p>ZIP Code must be US or CDN format. You can use an extended ZIP+4 code to determine address more accurately.</p><p class="mb-0"><a href="#">USP ZIP codes lookup tools</a></p></>} />

bug Something isn't working good first issue Good for newcomers Version 2
tonic
Raynos
Raynos commented Dec 11, 2019

We had a regression bug in tonic that was not caught by our tests.

Our tests are very unit focused.

Having examples and being able to write integration tests against example apps that consist of multiple components working together should get us decent regression tests.

This depends upon #10

HELP WANTED Extra attention is needed GOOD FIRST ISSUE Good for newcomers
hazbo
hazbo commented Jul 8, 2018

In the current README, so far I've gone over the very basics. Not all features have been covered, and there is little talk about httpu packages. Maybe some wiki pages, and some more details on the README would be helpful. Also a much better example video / gif is needed, the one I made is pretty bad.

enhancement New feature or request help wanted Extra attention is needed good first issue Good for newcomers
Steanky
Steanky commented Jun 2, 2022

Basically what the title says.

From what I've seen, the only way to check if a string (or namespace:value combination) is a valid Key is by:

  1. Duplicating the validation logic in KeyImpl
  2. Using exception handling as a control flow mechanism, e.g.
public static boolean isValidKey(String namespace, String value)
    try {
        Key.key(namespace, string);
        retur
Wikipedia
Wikipedia