Coder Social home page Coder Social logo

skydoves / bundler Goto Github PK

View Code? Open in Web Editor NEW
261.0 3.0 11.0 413 KB

๐ŸŽ Android Intent & Bundle extensions that insert and retrieve values elegantly.

License: Apache License 2.0

Kotlin 100.00%
android bundle intent activity fragment bundler kotlin kotlin-extensions skydoves

bundler's Introduction

Google Developer Expert Google Developers Medium Speaker
Sponsors Twitter Mastodon YouTube

GitHub Status

bundler's People

Contributors

arunkumar9t2 avatar seanghay avatar skydoves avatar

Stargazers

 avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar

Watchers

 avatar  avatar  avatar

bundler's Issues

How to passing ENUM?

with old way it will use put/getSerializable, but with bundler I cant get it work, because it cause error Property delegate must have a getValue...

example
Activity A

                    intentOf<AuthActivity> {
                        putExtra(Extras.AUTH_TYPE to AuthType.LOGIN)
                        startActivity(this@GuestActivity)
                    }

Activity B

val test: AuthType by bundle(Extras.AUTH_TYPE) --> it will error
val authType: AuthType = intent.extras?.getSerializable(Extras.AUTH_TYPE) as AuthType --> it works fine

Cant start intentof from Fragment

Please complete the following information:

  • Library Version 1.0.4

Describe the Bug:
Cant use intentof<> to start Activity on Fragment

                            intentOf<RequestActivity> {
                                putExtra(Extras.FRAGMENT_INDEX, FragmentIndex.AUTH_REQUEST)
                                startActivity(requireContext())
                            }

observeBundle for Activity, Fragment

observeBundle

Providing observable instances lazily using the LiveData, so we can observe the bundle data regardless of its nullability.

For example

private val id by observeBundle("poster")

poster.observe(this) {
     poster.name .. 
}

Illegal value type for Enum

Please complete the following information:

  • Library Version 1.0.3

Describe the Bug:
Cant get bundle for Enum
Example :
ENUM

enum class FragmentIndex {
    NONE,
    SIMPLE_REQUEST
}

Activity 1

                intentOf<RequestActivity> {
                    +(Extras.FRAGMENT_INDEX to FragmentIndex.SIMPLE_REQUEST)
                    startActivity(this@MainActivity)
                }

Activity 2

private val index: FragmentIndex by  bundle(Extras.FRAGMENT_INDEX, FragmentIndex.NONE)

it will crash Illegal value type.....

Expected Behavior:

usually it will use getSerializableExtra({key})

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    ๐Ÿ–– Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. ๐Ÿ“Š๐Ÿ“ˆ๐ŸŽ‰

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google โค๏ธ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.