Reputation: 33
Is there a way to get device resolution as "$height*$width"? Any packages or just plain Flutter?
I want the device resolution: computer or phone resolution. NOT the browser or app resolution.
Thanks.
Upvotes: -2
Views: 40
Reputation: 71
dart:ui
package has two properties that can handle what you need.
import 'dart:ui';
PlatformDispatcher.instance.views.first.physicalSize.height
PlatformDispatcher.instance.views.first.physicalSize.width
good luck!
Upvotes: 0