Zen Lednik

Results 5 issues of Zen Lednik

When calling `identify` immediately after calling `reset`, the `userId` and `traits` will not get reset. Minimal example: ```swift // Swift Analytics.shared().identify("123", traits: ["firstName": "John", "age":"20"]) Analytics.shared().flush() Analytics.shared().reset() Analytics.shared().identify(nil, traits: ["firstName":...

Option for MonthView to always have 6 rows. If only 5 rows is needed to display all days of month, the last row is filled with days of next month.

enhancement

Re-implemented some parts of the application in a more riverpod-ish style: * Using riverpod for dependency injection * Using notifiers for managing state * Using `@mutation` for post requests *...

Converted `Presenters` to `Notifiers`, only for `Notifiers` that do get/read operations. I will present different techniques for post/write operation on pub-beer.

The `HorizontalAxisDecoration.valuesAlign` is not working as expected. ### Example ```dart import 'package:charts_painter/chart.dart'; import 'package:flutter/material.dart'; class ChartScreen extends StatelessWidget { const ChartScreen({super.key}); @override Widget build(BuildContext context) { return Scaffold( body: Container(...