Reinis Mazeiks

Results 16 issues of Reinis Mazeiks

I was working on some perfectly reasonable and definitely not cursed Rust code when Cargo suddenly started crashing for some reason. ### Code [Playground link](https://play.rust-lang.org/?version=nightly&mode=debug&edition=2021&gist=18d868f2895c570c6e7d167b73d0fe42) ```Rust #![allow(warnings)] #![feature(never_type)] #![allow(const_err)] use...

I-ICE
T-compiler
C-bug

Fixes #525: wrong example provided in the "Stopping propagation" section.

I would like a way to provide props to a component's (possibly indirect) descendants. `use_context`(`_provider`) are very similar to what I want, but I want it to be more similar...

This doesn't compile: ``` use dioxus::prelude::rsx; fn main() { rsx!(div {}); } ``` Error: ``` error: cannot find macro `get_line_num` in this scope --> docs/guide/examples/test.rs:4:5 | 4 | rsx!(div {});...

core

It's unclear what functionality the dog app is supposed to demonstrate. The rendered page doesn't seem to be related to dogs, and the "search" is unresponsive. None of the buttons...

Steps to reproduce: - Open todo app and create an item - Mark the item as done by selecting its checkbox Result: Item is marked as done, but also activates...

In the weather app, there is a "search" bar as well as a list of locations to choose from. However, despite appearances, none of these are actually interactive – the...

When running the wifi scanner example on Ubuntu, it shows "no networks found" despite there being available Wifi connections according to the OS. Steps to reproduce: - Run Wifi scanner...

Given a BitArray `B`, I would like to efficiently iterate over all BitArrays that have a subset of `B`s ones set. For example, the subsets of `00011100` are: ``` 00000000...

Thanks for the amazing library! :crab: ### Feature description I would like to flip a tensor along a given dimension. This would be like pytorch's [flip](https://pytorch.org/docs/stable/generated/torch.flip.html) function. Basically it just...

good first issue
feature