Last active
November 23, 2016 09:51
-
-
Save sliskiCode/f79de995107be8f3b28cbcfcd0e2b3b3 to your computer and use it in GitHub Desktop.
7 things you probably don’t know about Kotlin #1
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| 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