MCPcopy Create free account

hub / github.com/NV404/gova / types & classes

Types & classes136 in github.com/NV404/gova

↓ 4 callersTypeAliasstaticText
staticText wraps a plain string as textContent.
signal.go:22
TypeAliasAccessibilityRole
AccessibilityRole is a semantic role hint for assistive technologies.
modifier.go:55
TypeAliasActionStyle
overlay.go:5
StructAlertAction
overlay.go:13
StructAlertActionSpec
internal/fyne/overlay.go:55
StructAlertOptions
AlertOptions is the resolved payload for a NativeAlert.
dialog.go:19
TypeAliasAlignment
Alignment describes cross-axis alignment for VStack/HStack and full 2D alignment for ZStack. The same constants serve both; stacks ignore the axis tha
layout.go:6
StructAnimation
animate.go:18
StructAnimationHandle
animate.go:55
StructAppConfig
gova.go:15
StructBadge
Badge overlays a small red dot on top of a child view using ZStack.
examples/components/main.go:32
StructBuildError
Build runs `go build -o out pkg` from the given working directory. Returns stderr output on failure so the caller can display it verbatim.
internal/devserver/builder.go:12
StructButtonResult
testing.go:211
TypeAliasButtonStyle
button.go:3
TypeAliasCategory
examples/fancytodo/main.go:9
StructConfirmOptions
ConfirmOptions is the resolved payload for a NativeConfirm.
dialog.go:27
StructDetailView
DetailView is pushed onto the nav stack; captured by value at push time.
examples/components/main.go:49
StructDock
Dock exposes the OS application dock (macOS), taskbar (Windows), or launcher entry (Linux desktops that implement the Unity launcher API). A Dock is
dock.go:13
StructDockMenuItem
DockMenuItem is one entry in the dock right-click menu. An empty Label renders as a separator; an empty Action is disabled.
dock.go:20
TypeAliasEaseCurve
animate.go:9
StructFilePickerBuilder
FilePickerBuilder builds an open-file dialog.
dialog.go:138
StructFilePickerOptions
FilePickerOptions is the resolved payload for a FilePicker.
dialog.go:38
TypeAliasFillMode
image.go:3
StructFolderPickerBuilder
FolderPickerBuilder builds an open-folder dialog.
dialog.go:232
StructFolderPickerOptions
FolderPickerOptions is the resolved payload for a FolderPicker.
dialog.go:57
TypeAliasFontStyle
FontStyle represents a named font style.
modifier.go:66
StructFormEntry
form.go:14
StructFormItemSpec
internal/fyne/spec.go:139
StructFyneBridge
internal/fyne/bridge.go:56
StructHomeView
HomeView is the NavStack root.
examples/components/main.go:64
InterfaceIdentifiable
Identifiable is the interface types can implement to provide list identity. Used by ListOf for automatic key resolution.
list.go:11
StructModel
gova_test.go:227
StructModel
examples/todo/main.go:15
StructMountedNode
internal/fyne/bridge.go:15
StructNativeAlertBuilder
NativeAlertBuilder builds a single-button informational alert.
dialog.go:65
StructNativeConfirmBuilder
NativeConfirmBuilder builds a two-button confirmation dialog.
dialog.go:92
StructNav
Nav is the runtime handle to a navigation stack. Obtain one via UseNav inside a view rendered under a NavStack.
nav.go:74
StructNavBarSpec
internal/fyne/spec.go:33
StructNote
examples/notes/main.go:9
StructNotesModel
examples/notes/main.go:15
StructOptions
Options configures Run.
internal/devserver/server.go:13
FuncTypePersistOption
PersistOption configures PersistedState.
persist.go:59
StructRefValue
RefValue holds a mutable value that does NOT trigger re-renders. Use for values that persist across renders but don't affect the view (timers, counter
state.go:189
StructRenderedTree
RenderedTree is the result of TestRender. It provides query methods to find nodes and simulate interactions, then re-render to see changes.
testing.go:67
StructSavePickerBuilder
SavePickerBuilder builds a save-file dialog.
dialog.go:183
StructSavePickerOptions
SavePickerOptions is the resolved payload for a SavePicker.
dialog.go:47
StructScaffoldSpec
internal/fyne/spec.go:29
StructScope
Scope is the component lifecycle context. It provides access to state, effects, and the parent context.Context. Named "Scope" (not "Context") to avoid
scope.go:12
InterfaceSignal
Signal is a reactive value that notifies subscribers when it changes. Implemented by derivedSignal and formatSignal.
signal.go:10
StructStateValue
StateValue holds reactive state for a component. Use State() to create. State.Set() and State.Update() can be called from any goroutine.
state.go:11
StructStoreKey
StoreKey identifies a typed store. Define at package level. The Default value is used when no ancestor has Provided this store.
store.go:7
StructSupervisor
Supervisor manages a single long-running child process, replacing it on demand. Restart is safe to call from any goroutine.
internal/devserver/supervisor.go:15
StructTabEntry
nav.go:42
TypeAliasTabPlacement
TabPlacement controls where a TabView renders its tab bar.
nav.go:6
FuncTypeTestOption
func(*Scope)
testing.go:56
StructTextFieldResult
testing.go:248
StructTextResult
testing.go:204
StructTheme
style.go:224
TypeAliasThemeColorName
style.go:13
StructThemeConfig
internal/fyne/theme.go:12
TypeAliasThemeSizeName
style.go:47
TypeAliasThemeVariant
style.go:5
StructTodo
examples/fancytodo/main.go:22
StructTodo
examples/todo/main.go:9
StructToggleResult
testing.go:229
StructToolbarItem
ToolbarItem is an entry in NavToolbar. Build with ToolbarLeading or ToolbarTrailing.
nav.go:253
StructUser
examples/components/main.go:9
StructUserRow
examples/components/main.go:15
InterfaceView
view.go:3
TypeAliasViewKind
internal/fyne/spec.go:3
StructViewSpec
internal/fyne/spec.go:41
InterfaceViewable
component.go:40
StructWatcher
Watcher recursively watches a directory tree for .go file changes and emits debounced notifications on Events. Close() stops the watcher and closes th
internal/devserver/watcher.go:16
StructWatcherOptions
WatcherOptions configures NewWatcher.
internal/devserver/watcher.go:28
StructasyncState
effect.go:35
StructbuttonData
view.go:70
StructcoloredText
internal/fyne/coloredtext.go:13
StructcoloredTextRenderer
internal/fyne/coloredtext.go:68
StructcomponentNode
component.go:5
Structconditional
conditional carries both branches of a When/.Else for deferred evaluation.
list.go:179
StructdarwinDock
dock_darwin.go:20
StructderivedListModel
gova_test.go:627
StructderivedSignal
derivedSignal derives a Signal[U] from a State[T] via a transformation function.
signal.go:113
StructdialogCallbacks
Completion-handler registry. Each Show* call allocates a single callbacks struct and passes its atomic ID across cgo; ObjC calls the matching exported
dialog_native_darwin.go:37
InterfacedialogPresenter
dialogPresenter is the interface the runtime provides to a Scope for showing OS-level dialogs.
dialog.go:10
InterfacedockImpl
dockImpl is the platform-specific surface. One implementation per GOOS, plus a no-op fallback.
dock.go:27
StructeffectEntry
effect.go:8
StructfadeState
examples/fancytodo/main.go:67
StructfakeOverlay
fakeOverlay records calls and exercises the cancel-handle contract that the real Fyne-backed overlayFuncs implement. Each call to showSheet returns a
overlay_test.go:13
StructformData
view.go:124
StructformItem
view.go:128
StructformatSignal
formatSignal derives a Signal[string] from a State by applying fmt.Sprintf.
signal.go:76
StructframeModifier
modifier.go:37
StructfyneDialogPresenter
fyneDialogPresenter is the Fyne-backed dialogPresenter published by RunWithConfig. All dialog methods dispatch to the Fyne main thread via fyne.Do so
dialog_fyne.go:12
StructgovaTheme
internal/fyne/theme.go:19
StructgridData
view.go:120
StructimageData
image.go:12
StructinternalSub
internalSub is one subscriber in the internal notification list. An id lets us target a specific subscription for removal without relying on function-
state.go:29
StructlayoutData
view.go:76
StructlistData
view.go:115
next →1–100 of 136, ranked by callers