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
DecoratedBoxTransition( | |
decoration: DecorationTween( | |
begin: BoxDecoration( | |
borderRadius: BorderRadius.all(Radius.circular(20.0)), | |
color: Colors.transparent | |
), | |
end: BoxDecoration( | |
borderRadius: BorderRadius.all(Radius.circular(50.0)), | |
color: Colors.transparent | |
) |
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:developer' as devtools show log; | |
extension Log on Object { | |
void log() => devtools.log(toString()); | |
} | |
void testIt() { | |
const person1 = Person(name: 'Vandad', age: 42); | |
const person2 = Person(name: 'Vandad', age: 42); | |
const person3 = Person(name: 'Vandad', age: 43); |