Delgan

Results 639 comments of Delgan

Yeah, here is a example: ```dart class MyWidget extends StatefulWidget { @override _MyWidgetState createState() => _MyWidgetState(); } class _MyWidgetState extends State { @override void initState() { super.initState(); print("Init state..."); }...

Indeed, using `Stack` combined with `Visibility` should work the same way as the `IndexedStack`. However even in this case I didn't manage to make the animation happen in both directions.

Hey @champ96k, thanks for your commitment! About the implementation, I don't think it needs shared preference nor offline database. At least for the issue I described, it should be handled...

Colorization of file / line / function would be great in my opinion. This seems related to what was proposed in #32 about implementing [tbvaccine](https://github.com/skorokithakis/tbvaccine/)'s enhancements. The complications arise from...

Yes, this is what is done [here](https://github.com/skorokithakis/tbvaccine/blob/70e4aab53c81e00339491ce8ebd9e543b6349640/tbvaccine/tbv.py#L105). It iterates through the lines of the formatted exception, if the line matches the file regex, it extracts the filename and checks heuristically...

Well, the obvious way is to use a regex substitution on the formatted stacktrace. That's not very elegant. But I can't see any other solution.

@Qix- Glad to hear that. ❤️ How do you want to handle the transition? For now I created a new [`python3_only`](https://github.com/Qix-/better-exceptions/tree/python3_only) branch on top of which I will open pull...

Hi @Qix-. I remember reading on Reddit that you wanted to avoid any dependency on another library. Is it still a goal? I ask that because I see two libraries...

@Qix- Fine, I understand. 👍 I do not want to abuse your time but I'm a little curious to know your point of view: why do you think that `ansimarkup`...