useTransformationController function

  1. @defineHook
TransformationController useTransformationController([
  1. Matrix4? value
])

Implementation

@defineHook
TransformationController useTransformationController([Matrix4? value]) {
  return useChangeNotifier(
    () => TransformationController(value),
  );
}