Definition at line 34 of file FlutterWindowController.mm.
◆ flutterSetConstraints:
Definition at line 26 of file FlutterWindowController.mm.
47 NSSize size = [
self frameRectForContentRect:self.frame].size;
48 NSSize originalSize = size;
49 [
self setContentMinSize:NSMakeSize(constraints.min_width, constraints.min_height)];
50 size.width = std::max(size.width, constraints.
min_width);
51 size.height = std::max(size.height, constraints.
min_height);
53 [
self setContentMaxSize:NSMakeSize(constraints.max_width, constraints.max_height)];
54 size.width = std::min(size.width, constraints.
max_width);
55 size.height = std::min(size.height, constraints.
max_height);
57 [
self setContentMaxSize:NSMakeSize(CGFLOAT_MAX, CGFLOAT_MAX)];
59 if (!NSEqualSizes(originalSize, size)) {
60 [
self setContentSize:size];
◆ flutterSetContentSize:
The documentation for this category was generated from the following file: