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
import 'package:flutter/material.dart'; | |
import 'package:flutter/services.dart'; | |
void main() => runApp(CustomPageViewApp()); | |
class CustomPageViewApp extends StatelessWidget { | |
@override | |
Widget build(BuildContext context) { | |
SystemChrome.setPreferredOrientations([ | |
DeviceOrientation.portraitUp, |
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.example.cloudanchorsardemo.dialog | |
import android.app.Dialog | |
import android.content.Context | |
import android.content.res.Resources | |
import android.os.Bundle | |
import android.support.annotation.NonNull | |
import android.view.ViewGroup | |
import android.view.Window | |
import com.example.cloudanchorsardemo.R |