Advertisement
Guest User

Untitled

a guest
Sep 22nd, 2019
135
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.43 KB | None | 0 0
  1. package kz.team.library
  2.  
  3. import android.os.Bundle
  4. import androidx.appcompat.app.AppCompatActivity
  5. import io.flutter.facade.Flutter
  6.  
  7. class LibraryActivity : AppCompatActivity() {
  8.  
  9. override fun onCreate(savedInstanceState: Bundle?) {
  10. super.onCreate(savedInstanceState)
  11. val flutterView = Flutter.createView(
  12. this,
  13. lifecycle,
  14. null
  15. )
  16. setContentView(flutterView)
  17. }
  18. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement