* Add `Dock::replace_tab()`: change the inner widget content of a tab without having to remove and recreate the actual tab itself. * Fix StackNavigation to forward non-visibility events to all subviews * Allow saving/restoring the state of the `TextInput` widget This redoes the changes introduced in #533, but modified for the new version of TextInput * Add KeyModifiers parameter to `TextInputAction::Returned` * Fix bug in text centering * Properly restore the state of the TextInput * undo version bumps for `makepad-android-state` and `makepad-jni-sys` --------- Co-authored-by: Eddy Bruel <me@eddybruel.com>
18 lines
724 B
TOML
18 lines
724 B
TOML
[package]
|
|
name = "makepad-android-state"
|
|
version = "0.1.0"
|
|
authors = ["Makepad <info@makepad.nl>", "Kevin Boos <kevinaboos@gmail.com>"]
|
|
edition = "2021"
|
|
keywords = ["makepad", "android", "context", "activity", "state"]
|
|
categories = ["gui"]
|
|
description = "Exposes access to Makepad's context states on Android"
|
|
license = "MIT"
|
|
readme = "README.md"
|
|
homepage = "https://github.com/makepad/makepad/"
|
|
repository = "https://github.com/makepad/makepad/"
|
|
metadata.makepad-auto-version = "Xn0xvOdZChZbltM8tMBk0zLdOBc="
|
|
|
|
[dependencies]
|
|
## Note: we must not use local 'path' dependencies on `makepad-jni-sys`
|
|
## in order to guarantee that only one instance of each crate exists in the app binary.
|
|
makepad-jni-sys = {version = "0.4.0"}
|