Maniak ๐Ÿ’™'s Avatar

Maniak ๐Ÿ’™

@testeurmaniak.bsky.social

French Mobile Dev (Flutter ๐Ÿ’™) โ€ข Working @Shipfix โ€ข Co-organizer of Flutter Lyon ๐Ÿฆ โ€ข Part of the Invertase.io Authors Program โ€ข Epitech alumni

85 Followers  |  83 Following  |  9 Posts  |  Joined: 28.12.2023  |  1.6871

Latest posts by testeurmaniak.bsky.social on Bluesky

Lead Software Engineer - Mobile (m/f/d) | Jobs bei 1KOMMA5ยฐ Die 1KOMMA5ยฐ Gruppe ist ein CleanTech Unicorn mit der Mission alles zu elektrifizieren und รผber unsere KI-basierte Software Plattform Heartbeat AI jeden an den Strommarkt der Zukunft anzuschlieรŸen. Wi...

FLUTTER JOB ALERT

Our #FlutterDev Virtual Assembly Line Team at 1KOMMA5ยฐ is looking for an experienced Dev!

Is that you? Or do you know someone who wants to shape and accelerate the energy transition away from fossil fuels?

Check out the Job Posting ๐Ÿ‘‡
1komma5grad.jobs.personio.de/job/1949842?...

07.02.2025 08:21 โ€” ๐Ÿ‘ 28    ๐Ÿ” 11    ๐Ÿ’ฌ 0    ๐Ÿ“Œ 0
Video thumbnail

I finally published my biggest update yet for Yawa.๐Ÿฅณ
Widgets for iOS and Android (thanks to home_widget @ABausG ). Furthermore I added more animationsโœจ, 9 more languages ๐ŸŒ, fixed frame drops and much more! ๐Ÿš€

Try out Yawa now!
yetanotherweather.app

#buildinpublic #flutterdev

09.01.2025 09:37 โ€” ๐Ÿ‘ 22    ๐Ÿ” 1    ๐Ÿ’ฌ 2    ๐Ÿ“Œ 1
Preview
All I Know about Something - Chooyan's Flutter This series shows my understanding of a certain topic. The articles describe the topic as much as topics in a random order.

During the New Year holidays, I've published multiple articles to my "All I Know about Something" series on @hashnode.bsky.social. The knowledge about BuildContext, GlobalKey, and Layout calculation will make your #FlutterDev more enjoyable in 2025! chooyan.hashnode.dev/series/all-i...

05.01.2025 09:46 โ€” ๐Ÿ‘ 4    ๐Ÿ” 1    ๐Ÿ’ฌ 0    ๐Ÿ“Œ 0

A standing desk ๐Ÿ‘Œ

24.12.2024 15:05 โ€” ๐Ÿ‘ 1    ๐Ÿ” 0    ๐Ÿ’ฌ 1    ๐Ÿ“Œ 0
// Set the window size to emulate a medium size mobile device (i.e. iPhone SE).
    self.setContentSize(NSSize(width: 375, height: 667))

    // Disable window resizing
    self.styleMask.remove(.resizable)

    // Make the window always on top
    self.level = .floating

// Set the window size to emulate a medium size mobile device (i.e. iPhone SE). self.setContentSize(NSSize(width: 375, height: 667)) // Disable window resizing self.styleMask.remove(.resizable) // Make the window always on top self.level = .floating

Post image

I often use a macOS app to "simulate" building a mobile app in Flutter, particularly before I need any platform-specific functionality.

Here are some changes I make to `MainFlutterWindow.swift`.

The result is a cute always-on-top window sized somewhat like an iPhone SE. No plugins needed.

22.12.2024 04:10 โ€” ๐Ÿ‘ 38    ๐Ÿ” 4    ๐Ÿ’ฌ 6    ๐Ÿ“Œ 0
Video thumbnail

Playing around with the working-in-progress 3D capabilities of Flutter (using Impeller and Flame 3D)

The "world" is made out of multiple chunks, each chunk is it's own mesh with a single surface of 16x16 tiles (4 vertices per tile).

Running at max FPS on both my iPhone and macOS โšก

11.12.2024 17:21 โ€” ๐Ÿ‘ 42    ๐Ÿ” 11    ๐Ÿ’ฌ 3    ๐Ÿ“Œ 1
Post image

#Flutterdev After null-aware spreads, we will soon have null-aware single values.

This is a super simple and clean way to check if a single value is null and, if not, do something with it.

If anyone wants to deep dive: github.com/dart-lang/la...

04.12.2024 04:04 โ€” ๐Ÿ‘ 35    ๐Ÿ” 7    ๐Ÿ’ฌ 2    ๐Ÿ“Œ 4
Google needs to invest in more flutter

For whatever reason I wrote a long response to the "Google needs to invest more in Flutter" Reddit post tonight ๐Ÿคท

TL;DR I'm very grateful for what Google has done & is doing and think the rest of us outside Google could (and will!) do more.

www.reddit.com/r/FlutterDev...

03.12.2024 05:21 โ€” ๐Ÿ‘ 53    ๐Ÿ” 15    ๐Ÿ’ฌ 4    ๐Ÿ“Œ 0
Post image

Sure! They basically work the same but from() takes an Iterable while of() takes an Iterable<T> so it is able to infer the type of the list.

30.11.2024 18:04 โ€” ๐Ÿ‘ 2    ๐Ÿ” 0    ๐Ÿ’ฌ 1    ๐Ÿ“Œ 0
List.of constructor - List - dart:core library - Dart API API docs for the List.of constructor from Class List from the dart:core library, for the Dart programming language.

Actually, you might prefer using api.flutter.dev/flutter/dart...

30.11.2024 17:30 โ€” ๐Ÿ‘ 1    ๐Ÿ” 0    ๐Ÿ’ฌ 1    ๐Ÿ“Œ 0
Preview
โ˜‚๏ธ Implement Workspace Feature ยท Issue #53875 ยท dart-lang/sdk Workspace feature Description Support shared resolution between packages of a workspace / mono-repo. Workspaces are tightly related packages that are developed and released together. We have seen t...

Separated projects, the Dart analyzer has a hard time otherwise.
Thereโ€™s a feature request to improve that github.com/dart-lang/sd...

23.11.2024 07:46 โ€” ๐Ÿ‘ 4    ๐Ÿ” 0    ๐Ÿ’ฌ 1    ๐Ÿ“Œ 0
RepositoryProvider class - flutter_bloc library - Dart API API docs for the RepositoryProvider class from the flutter_bloc library, for the Dart programming language.

I think I would rather use a good old class with a RepositoryProvider ๐Ÿค”

pub.dev/documentatio...

22.11.2024 08:47 โ€” ๐Ÿ‘ 1    ๐Ÿ” 0    ๐Ÿ’ฌ 1    ๐Ÿ“Œ 0

Iโ€™ll be near Bellecour around 8:30am if you want to meetup. (Iโ€™ll have to join colleagues at a cowork cafรฉ for 9am)

21.11.2024 23:10 โ€” ๐Ÿ‘ 0    ๐Ÿ” 0    ๐Ÿ’ฌ 0    ๐Ÿ“Œ 0

Didnโ€™t know you were passing by Lyon. I wouldโ€™ve offered you to grab a beer.

21.11.2024 23:01 โ€” ๐Ÿ‘ 0    ๐Ÿ” 0    ๐Ÿ’ฌ 1    ๐Ÿ“Œ 0

@kazlauskas.dev hoping that you will participate as the king of Flutter memes ๐Ÿ‘€

21.11.2024 13:04 โ€” ๐Ÿ‘ 3    ๐Ÿ” 0    ๐Ÿ’ฌ 0    ๐Ÿ“Œ 0
Post image

Hey Flutter devs, now that we're more active on Bluesky let's (re)share the best memes from our community, I'll start with my little favorite ๐Ÿคก

21.11.2024 13:02 โ€” ๐Ÿ‘ 14    ๐Ÿ” 1    ๐Ÿ’ฌ 7    ๐Ÿ“Œ 0
Preview
Flutter Forum A home for all Flutter developers

Hey friends please help sharing the news about our new Flutter form forum.itsallwidgets.com
Especially if you are active on any other community platform.

10.11.2024 19:57 โ€” ๐Ÿ‘ 34    ๐Ÿ” 18    ๐Ÿ’ฌ 2    ๐Ÿ“Œ 0
Preview
Donate to Dan Field Memorial Fund, organized by Eileen Wieck Please assist the family of Dan Field in defraying funeral expenses and providing for Dan and Steโ€ฆ Eileen Wieck needs your support for Dan Field Memorial Fund

#Flutter ๐Ÿ’™
Author of flutter_svg
gofund.me/54a7a4fe

19.11.2024 19:43 โ€” ๐Ÿ‘ 15    ๐Ÿ” 4    ๐Ÿ’ฌ 0    ๐Ÿ“Œ 2
Vanity Blue - Custom Bluesky Handles Get your custom Bluesky handle instantly. Choose from professional domains and make your social presence unique.

Hey #Bluesky people ๐Ÿ‘‹

Just shipped @vanity.blue - a free and easy way to get custom @bsky.app handles - check it out at vanity.blue!

Lots of styles, engineer focused ones such as @*.flutter.community / @*.devrel.blue / @*.homelabs.blue and others such as @*.journalists.blue.

#bsky #databs

18.11.2024 12:03 โ€” ๐Ÿ‘ 56    ๐Ÿ” 18    ๐Ÿ’ฌ 10    ๐Ÿ“Œ 3

@testeurmaniak is following 20 prominent accounts