Commit 1dce2c85 authored by Ali Ghassemi's avatar Ali Ghassemi

Updating styles

parent 46f5d57a
......@@ -1098,16 +1098,16 @@ class DefaultAssetBundle extends InheritedWidget {
}
class RawImage extends StatelessComponent {
RawImage(
{Key key,
RawImage({
Key key,
this.bytes,
this.width,
this.height,
this.colorFilter,
this.fit,
this.repeat: ImageRepeat.noRepeat,
this.centerSlice})
: super(key: key);
this.centerSlice
}) : super(key: key);
final Uint8List bytes;
final double width;
......@@ -1126,7 +1126,8 @@ class RawImage extends StatelessComponent {
colorFilter: colorFilter,
fit: fit,
repeat: repeat,
centerSlice: centerSlice);
centerSlice: centerSlice
);
}
}
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment