Skip to content

Commit

Permalink
format
Browse files Browse the repository at this point in the history
  • Loading branch information
Jintin committed Dec 19, 2020
1 parent 1c0e8d9 commit 4c53cdc
Showing 1 changed file with 3 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -7,8 +7,9 @@ import android.view.ViewGroup
import androidx.fragment.app.Fragment
import androidx.viewbinding.ViewBinding

open class BindingFragment<V : ViewBinding>(private val bindingProvider: (LayoutInflater, ViewGroup?, Boolean) -> V) :
Fragment() {
open class BindingFragment<V : ViewBinding>(
private val bindingProvider: (LayoutInflater, ViewGroup?, Boolean) -> V
) : Fragment() {

private var _binding: V? = null

Expand Down

0 comments on commit 4c53cdc

Please sign in to comment.