Skip to content

Instantly share code, notes, and snippets.

@MarcinusX
Created August 24, 2018 15:52
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save MarcinusX/50873385f072145aa9fe291f8fd6c5ce to your computer and use it in GitHub Desktop.
Save MarcinusX/50873385f072145aa9fe291f8fd6c5ce to your computer and use it in GitHub Desktop.
class _GenderCardState extends State<GenderCard> {
...
Widget _drawCircleIndicator() {
return Stack(
alignment: Alignment.center,
children: <Widget>[
GenderCircle(),
GenderArrow(angle: _genderAngles[Gender.female]),
],
);
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment