This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
import 'dart:ui'; | |
import 'package:flutter/material.dart'; | |
class LetterTracing extends StatefulWidget { | |
final String letter; | |
final TextStyle textStyle; | |
final double coloredStrokeWidth; | |
final double strokeWidth; | |
final Color color = Colors.black; |