6

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

Pranta
  • 2,928
  • 7
  • 24
  • 37

1 Answers1

7

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

Zanael
  • 740
  • 5
  • 10