您最多选择25个主题 主题必须以中文或者字母或数字开头,可以包含连字符 (-),并且长度不得超过35个字符
 
 
 
 
 
 

18 行
391 B

using UIWidgets.painting;
using UIWidgets.scheduler;
namespace UIWidgets.widgets {
public interface ScrollContext {
BuildContext notificationContext { get; }
BuildContext storageContext { get; }
TickerProvider vsync { get; }
AxisDirection axisDirection { get; }
void setIgnorePointer(bool value);
void setCanDrag(bool value);
}
}