mirror of
https://github.com/flutter/samples.git
synced 2025-11-09 14:28:51 +00:00
Flutter 3.29 beta (#2571)
This commit is contained in:
@@ -6,7 +6,7 @@ import 'package:flutter/material.dart';
|
||||
|
||||
class TypewriterTween extends Tween<String> {
|
||||
TypewriterTween({String begin = '', String end = ''})
|
||||
: super(begin: begin, end: end);
|
||||
: super(begin: begin, end: end);
|
||||
|
||||
@override
|
||||
String lerp(double t) {
|
||||
@@ -89,7 +89,9 @@ class _CustomTweenDemoState extends State<CustomTweenDemo>
|
||||
return Text(
|
||||
animation.value,
|
||||
style: const TextStyle(
|
||||
fontSize: 16, fontFamily: 'SpecialElite'),
|
||||
fontSize: 16,
|
||||
fontFamily: 'SpecialElite',
|
||||
),
|
||||
);
|
||||
},
|
||||
),
|
||||
|
||||
Reference in New Issue
Block a user