Steve Alexander

Results 24 comments of Steve Alexander

I see on the pub.dev page for time_machine, there is an example to initialize. But, it is incorrect: ```dart import 'package:flutter/services.dart'; // TimeMachine discovers your TimeZone heuristically (it's actually pretty...

I just spent 20 mins looking in all the wrong places for this. Pretty annoying! And great to see that there's a great solution to the problem here! But then...

by the way, I think the reason it's so easy to miss the password in the table on the page, is that the password is "badssl.com". The problem is, the...

Initial feedback: I have some work to do on my icons, or in my app, in order to accommodate the changes. For example, the icons below align fine with the...

Ok, seems that the area flutter_svg claims for the widget is twice as wide as the SVG wants to be. ``` Fill 1 Created with Sketch. ``` ![image](https://user-images.githubusercontent.com/4321921/48913618-cc87cd80-ee70-11e8-8b6c-6be91011e6bb.png)

Here's a thin one and a broader one, for comparison. ![image](https://user-images.githubusercontent.com/4321921/48913644-dd384380-ee70-11e8-80dd-27cc8858faf0.png) ![image](https://user-images.githubusercontent.com/4321921/48913649-e1646100-ee70-11e8-80d5-129ee1359186.png)

I'm not understanding how the width of the widget in flutter is twice as wide as the SVG. Is that what the spec wants?

the code that renders these is: ``` return SvgPicture.string( snapshot.data, color: iconColor, colorBlendMode: BlendMode.multiply, allowDrawingOutsideViewBox: true ); ``` I'm not specifying a width or height in flutter. There is a...

ok, so SVGs now appear centered correctly. There does seem to be quite a bit of padding around the graphics, which I can't account for in the SVG itself. The...

Naively, I'd think the viewBox would say what the default clipping rectangle and size of an svg shoudl be.