-
So I notice that there seems to be no way to create an icon for the .fap in the flipper zero, is this planned or is there a way to do this and i'm just dumb? |
Beta Was this translation helpful? Give feedback.
Replies: 2 comments 5 replies
-
This isn't currently supported by the I think the only real "trick" is converting an image to the format expected by the Flipper Zero. The two options would be:
I'm probably learning towards the later, since it would make a better experience for developers. |
Beta Was this translation helpful? Give feedback.
-
As of From // Define the FAP Manifest for this application
manifest!(
name = "Hello, Rust!",
has_icon = true,
// See `docs/icons.md` for icon format
icon = "rustacean-10x10.icon"
); Icons can be created from any 10x10 px monochrome image. However they need to be converted to the Flipper Zero's custom icon format before they can be used. |
Beta Was this translation helpful? Give feedback.
As of
flipperzero-rt-0.4.1
it's now possible to set a custom icon for your application! 🥳From
examples/hello-rust
:Icons can be created from any 10x10 px monochrome image. However they need to be converted to the Flipper Zero's custom icon format before they can be used.