device_preview 1.0.0-alpha.6 copy "device_preview: ^1.0.0-alpha.6" to clipboard
device_preview: ^1.0.0-alpha.6 copied to clipboard

outdated

Approximate how your Flutter app looks and performs on another device.

example/lib/main.dart

import 'package:device_preview/device_preview.dart';
import 'package:flutter/cupertino.dart';
import 'package:flutter/foundation.dart';
import 'package:flutter/material.dart';

import 'basic.dart';

void main() {
  debugDefaultTargetPlatformOverride = TargetPlatform.fuchsia;

  WidgetsFlutterBinding.ensureInitialized();

  runApp(
    DevicePreview(
      enabled: true,
      builder: (context) => const BasicApp(),
    ),
  );
}