<?xml version="1.0" encoding="UTF-8"?>
<rss version="2.0" xmlns:atom="http://www.w3.org/2005/Atom" xmlns:dc="http://purl.org/dc/elements/1.1/">
  <channel>
    <title>DEV Community: Muragijimana</title>
    <description>The latest articles on DEV Community by Muragijimana (@richard457).</description>
    <link>https://dev.to/richard457</link>
    <image>
      <url>https://media2.dev.to/dynamic/image/width=90,height=90,fit=cover,gravity=auto,format=auto/https:%2F%2Fdev-to-uploads.s3.amazonaws.com%2Fuploads%2Fuser%2Fprofile_image%2F224388%2Fcc6c0352-1cee-4c98-8720-cae2b23559fd.jpeg</url>
      <title>DEV Community: Muragijimana</title>
      <link>https://dev.to/richard457</link>
    </image>
    <atom:link rel="self" type="application/rss+xml" href="https://dev.to/feed/richard457"/>
    <language>en</language>
    <item>
      <title>Flipper v1 is out on an open-source </title>
      <dc:creator>Muragijimana</dc:creator>
      <pubDate>Sat, 27 Jun 2020 15:10:12 +0000</pubDate>
      <link>https://dev.to/richard457/flipper-v1-is-out-on-an-open-source-4lac</link>
      <guid>https://dev.to/richard457/flipper-v1-is-out-on-an-open-source-4lac</guid>
      <description>&lt;p&gt;If this is the first time to hear flipper, flipper is an open-source point of sale like square that works online and offline, it has been 7 months of intense development a team from yegobox has intensively pushed the project to the edges so we can have v1 now, flipper is an ambitious project with the aim is to make point of sale accessible to everyone, if you are dev this is the right opportunity to collaborate and iterate with.. the project is built in electron and flutter for the mobile app please check out here &lt;a href="https://github.com/yegobox/flipper/"&gt;https://github.com/yegobox/flipper/&lt;/a&gt; &lt;/p&gt;

&lt;p&gt;I look forward to your stars and or contributions.&lt;/p&gt;

&lt;p&gt;Richard, Developer from the yegobox team.&lt;/p&gt;

</description>
      <category>opensource</category>
    </item>
    <item>
      <title>Flipper opensource app for business</title>
      <dc:creator>Muragijimana</dc:creator>
      <pubDate>Mon, 23 Mar 2020 07:29:05 +0000</pubDate>
      <link>https://dev.to/richard457/flipper-opensource-app-for-business-4db3</link>
      <guid>https://dev.to/richard457/flipper-opensource-app-for-business-4db3</guid>
      <description>&lt;p&gt;We recently released our opensource that you can find here &lt;a href="https://github.com/yegobox"&gt;https://github.com/yegobox&lt;/a&gt; "look anything related to flipper" which is an opensource application for handling business operations and daily life scenarios such as transacting and selling, we hope by getting people involved we can build something new and that is interesting we are open to new contributors we use #flutter for both android and ios and #angular for web and desktop application.&lt;br&gt;
we are looking for your support to this initiative.&lt;/p&gt;

</description>
      <category>opensource</category>
      <category>flutter</category>
      <category>angular</category>
    </item>
    <item>
      <title>Open source business app like square app!</title>
      <dc:creator>Muragijimana</dc:creator>
      <pubDate>Sat, 21 Mar 2020 19:02:20 +0000</pubDate>
      <link>https://dev.to/richard457/open-source-business-app-like-square-app-1ajc</link>
      <guid>https://dev.to/richard457/open-source-business-app-like-square-app-1ajc</guid>
      <description>&lt;p&gt;We have started our first big opensource project:&lt;br&gt;
I have been thinking of creating an opensource project a business application that can be used in our daily life such as selling, transacting, schooling etc... especially in our continent where such an app is not available.&lt;/p&gt;

&lt;p&gt;here is our GitHub:&lt;br&gt;
for mobile: &lt;a href="https://github.com/yegobox/flipper-mobile"&gt;https://github.com/yegobox/flipper-mobile&lt;/a&gt;&lt;br&gt;
for desktop and web: &lt;a href="https://github.com/yegobox/flipper"&gt;https://github.com/yegobox/flipper&lt;/a&gt;&lt;/p&gt;

&lt;p&gt;The documentation is not good but at least that is a room that might need a contribution. we are open to suggestion and ideas please send us at &lt;a href="mailto:dev@yegobox.com"&gt;dev@yegobox.com&lt;/a&gt; we would appreciate your contribution and be happy to have chat with you.&lt;br&gt;
We are looking toward where this initiative will take us and we can not wait for more to come.&lt;/p&gt;

&lt;p&gt;Thank you,&lt;br&gt;
team from yegobox.&lt;/p&gt;

</description>
      <category>android</category>
      <category>ios</category>
      <category>webdev</category>
    </item>
    <item>
      <title>Displaying a persistent model from a child widget</title>
      <dc:creator>Muragijimana</dc:creator>
      <pubDate>Fri, 03 Jan 2020 06:57:27 +0000</pubDate>
      <link>https://dev.to/richard457/displaying-a-persistent-model-from-a-child-widget-1n94</link>
      <guid>https://dev.to/richard457/displaying-a-persistent-model-from-a-child-widget-1n94</guid>
      <description>&lt;p&gt;Have you wanted to display a persistent model from a child widget in flutter?&lt;br&gt;
if you are a mobile developer the answer might be yes...&lt;/p&gt;

&lt;p&gt;here are a couple of reason you might need it, you need to show a model but you need your model to show on top of all widget not the child widget, the solution of cause as might guess us to go to the root widget so you can show the model from there, the problem is that by the time you try to do that the flutter will be in process of rebuilding the widget tree and therefore it can not insert a widget during building phase..... aha now you know the problem how do you solve it then???&lt;/p&gt;

&lt;p&gt;the answer is to wrap up the new model you want to insert into widget tree like this &lt;code&gt;WidgetsBinding.instance&lt;br&gt;
                .addPostFrameCallback((_) =&amp;gt; _showBottomSheet());&lt;/code&gt;&lt;br&gt;
this will ensure that the flutter SDK has done rebuilding new widget tree....&lt;/p&gt;

&lt;p&gt;I guess this has helped you a lot. thank you please give me feedback about my writing.&lt;/p&gt;

</description>
      <category>android</category>
      <category>flutter</category>
      <category>design</category>
    </item>
    <item>
      <title>I Built a referral laravel package</title>
      <dc:creator>Muragijimana</dc:creator>
      <pubDate>Fri, 03 Jan 2020 06:44:23 +0000</pubDate>
      <link>https://dev.to/richard457/i-built-a-referral-laravel-package-23mc</link>
      <guid>https://dev.to/richard457/i-built-a-referral-laravel-package-23mc</guid>
      <description>&lt;p&gt;Hello All, this is my first article but bear with me as I am not a pro yet in writing especially technical documentation.&lt;/p&gt;

&lt;p&gt;Recently at my work, I encountered a task to create a referral system to be used inside a laravel application we are developing for a client, and I thought hmmm? is a referral system a unique thing? of cause it is....! will I need this functionality in other projects or it may help someone else? after I concluded that this might be someone interested in then I created the package for it.&lt;/p&gt;

&lt;p&gt;I wanted something that you can install like &lt;code&gt;composer require yegobox/referral&lt;/code&gt; and be good to go! the package comes with its default layout that you can place anywhere in your app to get a referral button and a dashboard layout to show how much you earned using your referral code.&lt;/p&gt;

&lt;p&gt;the package has two referral strategy and you can customize it from config file which strategy you want to use within your app.&lt;/p&gt;

&lt;p&gt;I hope my first article as not as boring as it sounds, please give me feedback.&lt;/p&gt;

&lt;p&gt;if you are interested in contributing to project please head to &lt;a href="https://github.com/yegobox/referral"&gt;https://github.com/yegobox/referral&lt;/a&gt; your contribution is welcomed.&lt;/p&gt;

</description>
      <category>laravel</category>
      <category>php</category>
      <category>microservices</category>
    </item>
  </channel>
</rss>
