All Projects → gen2brain → Dlgs

gen2brain / Dlgs

Licence: bsd-2-clause
Go cross-platform library for displaying dialogs and input boxes

Programming Languages

go
31211 projects - #10 most used programming language

Labels

Projects that are alternatives of or similar to Dlgs

JavaUltimateTools
A Large Repository Of Awesome Code For Java.
Stars: ✭ 24 (-90.2%)
Mutual labels:  dialogs
Xtd forms
Modern c++17 library to create native gui for Microsoft Windows, Apple macOS and Linux.
Stars: ✭ 25 (-89.8%)
Mutual labels:  dialogs
Ookii Dialogs Winforms
Common dialog classes for Windows Forms applications
Stars: ✭ 130 (-46.94%)
Mutual labels:  dialogs
BalloonPopup
Forget Android Toast! BalloonPopup displays a round or squared popup and attaches it to a View, like a callout. Uses the Builder pattern for maximum ease. The popup can automatically hide and can persist when the value is updated.
Stars: ✭ 32 (-86.94%)
Mutual labels:  dialogs
Falcon
Take Android screenshots with Falcons bright eye!
Stars: ✭ 362 (+47.76%)
Mutual labels:  dialogs
Lovelydialog
This library is a set of simple wrapper classes that are aimed to help you easily create fancy material dialogs.
Stars: ✭ 1,043 (+325.71%)
Mutual labels:  dialogs
LocationFetcher
Easy Location fetching for Android apps.
Stars: ✭ 33 (-86.53%)
Mutual labels:  dialogs
Botbuilder Community Dotnet
Part of the Bot Builder Community Project. Repository for extensions for the Bot Builder .NET SDK, including middleware, dialogs, recognizers and more.
Stars: ✭ 196 (-20%)
Mutual labels:  dialogs
Material Dialogs
😍 A beautiful, fluid, and extensible dialogs API for Kotlin & Android.
Stars: ✭ 19,118 (+7703.27%)
Mutual labels:  dialogs
Simpledialogfragments
A collection of easy to use and extendable DialogFragment's for Android
Stars: ✭ 94 (-61.63%)
Mutual labels:  dialogs
Ookii Dialogs Wpf
Common dialog classes for WPF applications
Stars: ✭ 276 (+12.65%)
Mutual labels:  dialogs
Aestheticdialogs
📱 An Android Library for 💫fluid, 😍beautiful, 🎨custom Dialogs.
Stars: ✭ 352 (+43.67%)
Mutual labels:  dialogs
Macytdl
A macOS GUI front-end for the youtube-dl video downloader
Stars: ✭ 52 (-78.78%)
Mutual labels:  dialogs
CustomPermissionsDialogue
Custom Permissions Dialogue is the only permissions library that supports ALL permission request scenarios. This library handles multiple edge cases such as not enabling all permissions or permanently rejecting a permission request.
Stars: ✭ 51 (-79.18%)
Mutual labels:  dialogs
React Native Material Dialog
Material design dialogs for React Native 💬
Stars: ✭ 135 (-44.9%)
Mutual labels:  dialogs
soloalert
A customizable lightweight Alert Library with Material UI and awesome features.
Stars: ✭ 18 (-92.65%)
Mutual labels:  dialogs
Android Circledialog
仿IOS圆角对话框、进度条、列表框、输入框,ad广告框,支持横竖屏切换
Stars: ✭ 880 (+259.18%)
Mutual labels:  dialogs
Dialogsheet
An Android library to create fully material designed bottom dialogs similar to the Android Pay app.
Stars: ✭ 236 (-3.67%)
Mutual labels:  dialogs
Elegantdialog
A beautiful, customizable and interactive dialog for Android written in Kotlin/Java 😍
Stars: ✭ 189 (-22.86%)
Mutual labels:  dialogs
Botbuilder Community Js
Part of the Bot Builder Community Project. Repository for extensions for the Bot Builder JavaScript SDK, including middleware, dialogs, recognizers and more.
Stars: ✭ 88 (-64.08%)
Mutual labels:  dialogs

dlgs

TravisCI Build Status AppVeyor Build Status GoDoc Go Report Card

dlgs is a cross-platform library for displaying dialogs and input boxes.

Installation

go get -u github.com/gen2brain/dlgs

Documentation

Documentation on GoDoc.

Examples

item, _, err := dlgs.List("List", "Select item from list:", []string{"Bug", "New Feature", "Improvement"})
if err != nil {
    panic(err)
}
passwd, _, err := dlgs.Password("Password", "Enter your API key:")
if err != nil {
    panic(err)
}
yes, err := dlgs.Question("Question", "Are you sure you want to format this media?", true)
if err != nil {
    panic(err)
}

More

For cross-platform notifications and alerts see beeep.

Note that the project description data, including the texts, logos, images, and/or trademarks, for each open source project belongs to its rightful owner. If you wish to add or remove any projects, please contact us at [email protected].