František Gažo
František Gažo
Currently **Blade** generates only `MyFragment newMyFragment(...)` method for a class MyFragment inside the `blade.F` class. Add also `Bundle forMyFragment(...)` method to enable creation of bundles separately. This is usefull for...
Add support for MVVM. Unlike in MVP, the View holds a reference to the View Model, but the View Model has no information about the View.
we call both `Crisp.setTokenID(...)` and `Crisp.setUserNickname()` but sometimes the nickname gets ignored. when I look into the `setUserNickname()` code i see just an obfuscated code: ```java public static void setUserNickname(@NonNull...
Could you add support for a `hosted` field in root of `pubspec.yaml`? Similar to [publish_to](https://dart.dev/tools/pub/pubspec#publish_to) but this one would override default pub server for all dependencies (basically what `PUB_HOSTED_URL` does,...
## Steps to Reproduce 1. Use this code: ```dart import 'package:flutter/cupertino.dart'; import 'package:flutter/material.dart'; void main() { runApp(MyApp()); } class MyApp extends StatelessWidget { @override Widget build(BuildContext context) { return MaterialApp(...