<?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: YuKiO | 個人開発&amp;Flutter学習中</title>
    <description>The latest articles on DEV Community by YuKiO | 個人開発&amp;Flutter学習中 (@oo_forward).</description>
    <link>https://dev.to/oo_forward</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%2F422671%2Ff3ef701b-2f74-4287-b035-14832dc42f08.png</url>
      <title>DEV Community: YuKiO | 個人開発&amp;Flutter学習中</title>
      <link>https://dev.to/oo_forward</link>
    </image>
    <atom:link rel="self" type="application/rss+xml" href="https://dev.to/feed/oo_forward"/>
    <language>en</language>
    <item>
      <title>【Flutter】Recommended package used in the developed memo application</title>
      <dc:creator>YuKiO | 個人開発&amp;Flutter学習中</dc:creator>
      <pubDate>Fri, 03 Jul 2020 01:52:02 +0000</pubDate>
      <link>https://dev.to/oo_forward/flutter-recommended-package-used-in-the-developed-memo-application-15dl</link>
      <guid>https://dev.to/oo_forward/flutter-recommended-package-used-in-the-developed-memo-application-15dl</guid>
      <description>&lt;p&gt;Hi!&lt;/p&gt;

&lt;p&gt;I am a Japanese smartphone app developer.&lt;/p&gt;

&lt;p&gt;I released a smartphone app "IdeaMemo iX" at the end of June.&lt;/p&gt;

&lt;p&gt;IdeaShuffleMemo is a memo app to create good ideas.&lt;br&gt;
This app has three functions to support idea generation.&lt;/p&gt;

&lt;ul&gt;
&lt;li&gt;Shuffle Memo&lt;/li&gt;
&lt;li&gt;Pickup Past Memo&lt;/li&gt;
&lt;li&gt;Idea Hint Word&lt;/li&gt;
&lt;/ul&gt;

&lt;p&gt;These three features will help you discover great ideas.&lt;br&gt;
You will have great creativity.&lt;br&gt;
If you use this app, you will have great creativity.&lt;/p&gt;

&lt;h2&gt;
  
  
  for iOS(App Store US)
&lt;/h2&gt;

&lt;p&gt;&lt;a href="https://apps.apple.com/us/app/id1517535550"&gt;https://apps.apple.com/us/app/id1517535550&lt;/a&gt;&lt;/p&gt;

&lt;h2&gt;
  
  
  for Android(Google Play US)
&lt;/h2&gt;

&lt;p&gt;&lt;a href="https://play.google.com/store/apps/details?id=com.IdeaShuffleMemoApp&amp;amp;hl=us"&gt;https://play.google.com/store/apps/details?id=com.IdeaShuffleMemoApp&amp;amp;hl=us&lt;/a&gt;&lt;/p&gt;

&lt;p&gt;This app was created using Flutter.&lt;/p&gt;

&lt;p&gt;In this article, I will introduce the recommended Flutter packages used in the development of IdeaShuffleMemo.&lt;/p&gt;

&lt;h3&gt;
  
  
  Moor
&lt;/h3&gt;

&lt;p&gt;&lt;a href="https://pub.dev/packages/moor"&gt;https://pub.dev/packages/moor&lt;/a&gt;&lt;/p&gt;

&lt;p&gt;This package can easily manipulate the database.&lt;br&gt;
Moor has a good manual. If you look at it, there is no &lt;br&gt;
problem.&lt;/p&gt;

&lt;p&gt;&lt;a href="https://moor.simonbinder.eu/docs/getting-started/"&gt;https://moor.simonbinder.eu/docs/getting-started/&lt;/a&gt;&lt;/p&gt;

&lt;h3&gt;
  
  
  awesome_dialog
&lt;/h3&gt;

&lt;p&gt;This package can easily display fancy dialogs.&lt;br&gt;
It's also easy to customize.&lt;/p&gt;

&lt;p&gt;However, the dialog does not disappear automatically.&lt;br&gt;
I needed to add code.&lt;br&gt;
The code is shown on the following page. (※Japanese)&lt;br&gt;
&lt;a href="https://qiita.com/YuKiO-OO/items/283f44da64d304a6228e"&gt;https://qiita.com/YuKiO-OO/items/283f44da64d304a6228e&lt;/a&gt;&lt;br&gt;
&lt;a href="https://res.cloudinary.com/practicaldev/image/fetch/s--xww-nbdi--/c_limit%2Cf_auto%2Cfl_progressive%2Cq_auto%2Cw_880/https://dev-to-uploads.s3.amazonaws.com/i/wpectsgbjnpusbko4vv1.jpg" class="article-body-image-wrapper"&gt;&lt;img src="https://res.cloudinary.com/practicaldev/image/fetch/s--xww-nbdi--/c_limit%2Cf_auto%2Cfl_progressive%2Cq_auto%2Cw_880/https://dev-to-uploads.s3.amazonaws.com/i/wpectsgbjnpusbko4vv1.jpg" alt="Alt Text"&gt;&lt;/a&gt;&lt;/p&gt;

&lt;h3&gt;
  
  
  font_awesome_flutter
&lt;/h3&gt;

&lt;p&gt;&lt;a href="https://pub.dev/packages/font_awesome_flutter"&gt;https://pub.dev/packages/font_awesome_flutter&lt;/a&gt;&lt;/p&gt;

&lt;p&gt;This package can add more icons.&lt;br&gt;
In my case, the material icon was not enough.&lt;/p&gt;

&lt;p&gt;Usually you will need to upload an image if you want to use the Google logo.&lt;/p&gt;

&lt;p&gt;If you use font_awesome_flutter, you can easily display the Google logo with an icon.&lt;/p&gt;

&lt;h3&gt;
  
  
  vibrate
&lt;/h3&gt;

&lt;p&gt;&lt;a href="https://pub.dev/packages/vibrate"&gt;https://pub.dev/packages/vibrate&lt;/a&gt;&lt;/p&gt;

&lt;p&gt;This package can use the vibration function of the smartphone.&lt;/p&gt;

&lt;p&gt;During the processing of the app, I worry that my smartphone is unresponsive. "Is it working?"&lt;/p&gt;

&lt;p&gt;If you use vibrate, you will be able to vibrate the process of processing.&lt;/p&gt;

&lt;h3&gt;
  
  
  shake
&lt;/h3&gt;

&lt;p&gt;&lt;a href="https://pub.dev/packages/shake"&gt;https://pub.dev/packages/shake&lt;/a&gt;&lt;/p&gt;

&lt;p&gt;I wanted to implement the features unique to smartphones.&lt;br&gt;
It is shaking the smartphone.&lt;/p&gt;

&lt;p&gt;If you use this package, you can execute the process when you shake your smartphone.&lt;/p&gt;

&lt;h3&gt;
  
  
  introduction_screen
&lt;/h3&gt;

&lt;p&gt;&lt;a href="https://pub.dev/packages/introduction_screen"&gt;https://pub.dev/packages/introduction_screen&lt;/a&gt;&lt;/p&gt;

&lt;p&gt;This package can easily make the tutorial screen of the first start.&lt;/p&gt;

&lt;p&gt;How was this article?&lt;/p&gt;

&lt;p&gt;If you're struggling with the idea of ​​apps and web services, this app will be a good help.&lt;/p&gt;

&lt;p&gt;I would be very happy if you downloaded my App.&lt;/p&gt;

&lt;p&gt;thank you for reading.&lt;/p&gt;

&lt;h2&gt;
  
  
  for iOS(App Store US)
&lt;/h2&gt;

&lt;p&gt;&lt;a href="https://apps.apple.com/us/app/id1517535550"&gt;https://apps.apple.com/us/app/id1517535550&lt;/a&gt;&lt;/p&gt;

&lt;h2&gt;
  
  
  for Android(Google Play US)
&lt;/h2&gt;

&lt;p&gt;&lt;a href="https://play.google.com/store/apps/details?id=com.IdeaShuffleMemoApp&amp;amp;hl=us"&gt;https://play.google.com/store/apps/details?id=com.IdeaShuffleMemoApp&amp;amp;hl=us&lt;/a&gt;&lt;/p&gt;

</description>
      <category>flutter</category>
      <category>ios</category>
      <category>android</category>
      <category>dart</category>
    </item>
  </channel>
</rss>
