symbolConfiguration property

UIImageSymbolConfiguration? get symbolConfiguration

Symbol configuration support

This describes the symbol configuration of a symbol image. Symbol images start off with an unspecified configuration but can be modified by using image.withConfiguration(:).

However... the preferred ways of adding configurations for displaying images is to specify them on the image view using preferredSymbolConfiguration, but it is possible to modify images with a more specific configuration. This include image related traits, for example you can use this to fix a symbol image to a dynamic type style at a fixed preferred content size category.

Implementation

UIImageSymbolConfiguration? get symbolConfiguration {
  final _ret = _objc_msgSend_1x359cv(this.ref.pointer, _sel_symbolConfiguration);
  return _ret.address == 0 ? null : UIImageSymbolConfiguration.castFromPointer(_ret, retain: true, release: true);
}