Skip to content

Instantly share code, notes, and snippets.

@sliskiCode
Last active November 23, 2016 09:51
Show Gist options
  • Save sliskiCode/f79de995107be8f3b28cbcfcd0e2b3b3 to your computer and use it in GitHub Desktop.
Save sliskiCode/f79de995107be8f3b28cbcfcd0e2b3b3 to your computer and use it in GitHub Desktop.
7 things you probably don’t know about Kotlin #1
package com.code.sliski.userinfoscreen.ui
import ...
import android.view.View // Conflict
class UserInfoFragment : Fragment(), com.code.sliski.userinfoscreen.ui.View { // Conflict
override fun onCreateView(inflater: LayoutInflater,
container: ViewGroup?,
state: Bundle?): View = // Conflict
inflater.inflate(user_info_fragment,
container,
false)
}
interface View // Conflict
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment