SuperKid 2020. 3. 19. 16:11

 [Dart] Mixins

 

[Ko]

 - with 구문 사용, 여러개 mixin 동시 적용 가능

class _WelcomeScreenState extends State<WelcomeScreen>

    with SingleTickerProviderStateMixin {

  AnimationController controller;

  Animation animation;

...

 

[En]

 - Using with statement, multiple mixins can be applied simultaneously

class _WelcomeScreenState extends State<WelcomeScreen>

    with SingleTickerProviderStateMixin {

  AnimationController controller;

  Animation animation;

...