2017-10-19 25 views

回答

1

MediaQuery.of(context)會給你方向,和更多。 API docs here

例如,你的構建的內部()方法:

var columnCount = 
      MediaQuery.of(context).orientation == Orientation.portrait ? 2 : 4; 
相關問題