2022-02-01 21:22:06 +05:30
|
|
|
package com.github.libretube
|
2021-12-09 18:25:32 +05:30
|
|
|
|
|
|
|
import android.os.Bundle
|
2021-12-09 18:31:47 +05:30
|
|
|
import androidx.fragment.app.Fragment
|
2021-12-09 18:25:32 +05:30
|
|
|
import android.view.LayoutInflater
|
|
|
|
import android.view.View
|
|
|
|
import android.view.ViewGroup
|
|
|
|
|
2022-02-05 21:20:16 +05:30
|
|
|
|
2021-12-09 18:25:32 +05:30
|
|
|
class Library : Fragment() {
|
2022-02-05 21:20:16 +05:30
|
|
|
|
2021-12-09 18:25:32 +05:30
|
|
|
|
|
|
|
override fun onCreate(savedInstanceState: Bundle?) {
|
|
|
|
super.onCreate(savedInstanceState)
|
|
|
|
arguments?.let {
|
2022-02-05 21:20:16 +05:30
|
|
|
|
2021-12-09 18:25:32 +05:30
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
override fun onCreateView(
|
|
|
|
inflater: LayoutInflater, container: ViewGroup?,
|
|
|
|
savedInstanceState: Bundle?
|
|
|
|
): View? {
|
|
|
|
// Inflate the layout for this fragment
|
|
|
|
return inflater.inflate(R.layout.fragment_library, container, false)
|
|
|
|
}
|
|
|
|
|
2022-02-05 21:20:16 +05:30
|
|
|
|
2021-12-09 18:25:32 +05:30
|
|
|
}
|