Skip to content
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion sdk/python/packages/flet/src/flet/controls/page.py
Original file line number Diff line number Diff line change
Expand Up @@ -1367,7 +1367,7 @@ async def get_device_info(self) -> Optional[DeviceInfo]:

if self.web:
return from_dict(WebDeviceInfo, info)
elif self.platform == PagePlatform.ANDROID:
elif self.platform in [PagePlatform.ANDROID, PagePlatform.ANDROID_TV]:
return from_dict(AndroidDeviceInfo, info)
elif self.platform == PagePlatform.IOS:
return from_dict(IosDeviceInfo, info)
Expand Down
Loading