Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

Flutter inspector toggle platform mode is not showing

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

like image 645
Pranta Avatar asked Oct 15 '22 21:10

Pranta


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

like image 161
Zanael Avatar answered Oct 20 '22 16:10

Zanael