Skip to content

Commit

Permalink
Added dartdoc to createState methods as workaround for https://github…
Browse files Browse the repository at this point in the history
  • Loading branch information
awhitford committed Nov 6, 2020
1 parent 267a06f commit 7ba5787
Show file tree
Hide file tree
Showing 8 changed files with 8 additions and 2 deletions.
1 change: 1 addition & 0 deletions lib/src/colorize.dart
Original file line number Diff line number Diff line change
Expand Up @@ -91,6 +91,7 @@ class ColorizeAnimatedTextKit extends StatefulWidget {
assert(null != isRepeatingAnimation),
super(key: key);

/// Creates the mutable state for this widget. See [StatefulWidget.createState].
@override
_ColorizeTextState createState() => _ColorizeTextState();
}
Expand Down
1 change: 1 addition & 0 deletions lib/src/fade.dart
Original file line number Diff line number Diff line change
Expand Up @@ -107,6 +107,7 @@ class FadeAnimatedTextKit extends StatefulWidget {
assert(null != isRepeatingAnimation),
super(key: key);

/// Creates the mutable state for this widget. See [StatefulWidget.createState].
@override
_FadeTextState createState() => _FadeTextState();
}
Expand Down
1 change: 1 addition & 0 deletions lib/src/rotate.dart
Original file line number Diff line number Diff line change
Expand Up @@ -111,6 +111,7 @@ class RotateAnimatedTextKit extends StatefulWidget {
assert(null != isRepeatingAnimation),
super(key: key);

/// Creates the mutable state for this widget. See [StatefulWidget.createState].
@override
_RotatingTextState createState() => _RotatingTextState();
}
Expand Down
1 change: 1 addition & 0 deletions lib/src/scale.dart
Original file line number Diff line number Diff line change
Expand Up @@ -114,6 +114,7 @@ class ScaleAnimatedTextKit extends StatefulWidget {
assert(null != stopPauseOnTap),
super(key: key);

/// Creates the mutable state for this widget. See [StatefulWidget.createState].
@override
_ScaleTextState createState() => _ScaleTextState();
}
Expand Down
1 change: 1 addition & 0 deletions lib/src/text_liquid_fill.dart
Original file line number Diff line number Diff line change
Expand Up @@ -72,6 +72,7 @@ class TextLiquidFill extends StatefulWidget {
assert(null != waveColor),
super(key: key);

/// Creates the mutable state for this widget. See [StatefulWidget.createState].
@override
_TextLiquidFillState createState() => _TextLiquidFillState();
}
Expand Down
1 change: 1 addition & 0 deletions lib/src/typer.dart
Original file line number Diff line number Diff line change
Expand Up @@ -92,6 +92,7 @@ class TyperAnimatedTextKit extends StatefulWidget {
assert(null != stopPauseOnTap),
super(key: key);

/// Creates the mutable state for this widget. See [StatefulWidget.createState].
@override
_TyperState createState() => _TyperState();
}
Expand Down
1 change: 1 addition & 0 deletions lib/src/typewriter.dart
Original file line number Diff line number Diff line change
Expand Up @@ -107,6 +107,7 @@ class TypewriterAnimatedTextKit extends StatefulWidget {
assert(null != isRepeatingAnimation),
super(key: key);

/// Creates the mutable state for this widget. See [StatefulWidget.createState].
@override
_TypewriterState createState() => _TypewriterState();
}
Expand Down
3 changes: 1 addition & 2 deletions lib/src/wavy.dart
Original file line number Diff line number Diff line change
Expand Up @@ -63,14 +63,13 @@ class WavyAnimatedTextKit extends StatefulWidget {
/// By default it is set to true.
final bool isRepeatingAnimation;

/// Creates the mutable state for this widget. See [StatefulWidget.createState].
@override
_WavyAnimatedTextKitState createState() => _WavyAnimatedTextKitState();
}

class _WavyAnimatedTextKitState extends State<WavyAnimatedTextKit>
with TickerProviderStateMixin {
// List<GlobalKey<_WTextState>> _keys;

AnimationController _controller;
Animation<double> _waveAnim;
Timer _timer;
Expand Down

0 comments on commit 7ba5787

Please sign in to comment.