Flutter inspector toggle platform mode is not showing

Viewed 1853

I am using android studio and I can't find toggle platform mode in the flutter inspector. Where can I find it?

1 Answers

Just set the platform parameter in the ThemeData of the app to TargetPlatform:

platform: TargetPlatform.iOS

Code example:

import 'package:flutter/material.dart';
import 'package:flutter/widgets.dart';

void main() {
  runApp(
    MaterialApp(
      title: 'Flutter Demo',
      theme: ThemeData(
        primarySwatch: Colors.blue,
        // The line below forces the theme to iOS.
        platform: TargetPlatform.iOS,
      ),
      home: Scaffold(
        body: Center(
          child: TextField(),
        ),
      ),
    ),
  );
}

Original answer

Related