top of page
MR
Spell out information about application development, etc.
Search
[Flutter]Read data from shared preference in Redux
Overview I'm making a smartphone app with flutter. Redux is used for state management. Save the data I want to keep even if the...
Aug 18, 2021
[Flutter/Dart] "Invalid date format" in DateTime parse
Situation (It's a mistake to say from the conclusion ...) I convert DateTime type variable to String with dart and save it in shared...
Aug 18, 2021
[dart]Variable values change unintentionally
Situation There is a class that regulates the operation of the application. The "Change settings" screen takes a copy of the existing...
Aug 17, 2021
![[Flutter] Change the start position of a specific widget in the Column](https://static.wixstatic.com/media/90b712_c9b78559e5c34838b5f1cc79c65a2a4c~mv2.jpg/v1/fill/w_333,h_250,fp_0.50_0.50,q_30,blur_30,enc_avif,quality_auto/90b712_c9b78559e5c34838b5f1cc79c65a2a4c~mv2.webp)
![[Flutter] Change the start position of a specific widget in the Column](https://static.wixstatic.com/media/90b712_c9b78559e5c34838b5f1cc79c65a2a4c~mv2.jpg/v1/fill/w_454,h_341,fp_0.50_0.50,q_90,enc_avif,quality_auto/90b712_c9b78559e5c34838b5f1cc79c65a2a4c~mv2.webp)
[Flutter] Change the start position of a specific widget in the Column
Overview When placing a widget in a Column in Flutter, you can set the left or right position to start with the crossAxisAligment...
Aug 17, 2021
[Flutter/dart]Save the image in a local directory
Overview In the smartphone application, if you want to retain the data even after the application is closed, get the value of the...
Aug 17, 2021
[flutter/dart]Open the Twitter DM page from the smartphone app
Overview When creating a smartphone app with flutter, you may want to open other apps directly. This time, I will show you how to open a...
Aug 17, 2021
[flutter]Execution failed for task ':shared_preferences:verifyReleaseResources'.
Phenomenon When I try to make an apk with flutter for publication with Google Pay and do flutter build apk, the above error occurs and I...
Aug 17, 2021
![[flutter/dart]Adjust Text margins](https://static.wixstatic.com/media/90b712_9101d847d4f24dfe8cea770b89591f37~mv2.png/v1/fill/w_333,h_250,fp_0.50_0.50,q_35,blur_30,enc_avif,quality_auto/90b712_9101d847d4f24dfe8cea770b89591f37~mv2.webp)
![[flutter/dart]Adjust Text margins](https://static.wixstatic.com/media/90b712_9101d847d4f24dfe8cea770b89591f37~mv2.png/v1/fill/w_454,h_341,fp_0.50_0.50,q_95,enc_avif,quality_auto/90b712_9101d847d4f24dfe8cea770b89591f37~mv2.webp)
[flutter/dart]Adjust Text margins
Overview When creating the UI of an app with flutter, the alignment of Text and other widgets may appear to be slightly out of alignment....
Aug 17, 2021
![[Flutter/dart] Make sure that Stack does not break part of the widget](https://static.wixstatic.com/media/90b712_12608421d9e24717897d02b2c194dc18~mv2.jpg/v1/fill/w_333,h_250,fp_0.50_0.50,q_30,blur_30,enc_avif,quality_auto/90b712_12608421d9e24717897d02b2c194dc18~mv2.webp)
![[Flutter/dart] Make sure that Stack does not break part of the widget](https://static.wixstatic.com/media/90b712_12608421d9e24717897d02b2c194dc18~mv2.jpg/v1/fill/w_454,h_341,fp_0.50_0.50,q_90,enc_avif,quality_auto/90b712_12608421d9e24717897d02b2c194dc18~mv2.webp)
[Flutter/dart] Make sure that Stack does not break part of the widget
phenomenon You can use the Stack () widget in flutter to stack another widget on top of one. However, if the upper widget protrudes from...
Aug 17, 2021
[Flutter/dart] Save the state of Redux Store / How to use redux_persist
Overview In many cases, you want to retain the data set by the user even after the application is closed. If you are using redux for...
Aug 17, 2021
![[Flutter/dart] How to make a page that appears on the screen](https://static.wixstatic.com/media/90b712_d52a639c224b440db34f43d483bc75af~mv2.png/v1/fill/w_333,h_250,fp_0.50_0.50,q_35,blur_30,enc_avif,quality_auto/90b712_d52a639c224b440db34f43d483bc75af~mv2.webp)
![[Flutter/dart] How to make a page that appears on the screen](https://static.wixstatic.com/media/90b712_d52a639c224b440db34f43d483bc75af~mv2.png/v1/fill/w_454,h_341,fp_0.50_0.50,q_95,enc_avif,quality_auto/90b712_d52a639c224b440db34f43d483bc75af~mv2.webp)
[Flutter/dart] How to make a page that appears on the screen
Overview In the smartphone app, there is a type of page that appears on the spot without changing the screen (often in notifications,...
Aug 17, 2021
![[Flutter/dart] Make a notification number badge](https://static.wixstatic.com/media/90b712_32dd8c6d06a74c26ab9221f9b167ef33~mv2.jpg/v1/fill/w_333,h_250,fp_0.50_0.50,q_30,blur_30,enc_avif,quality_auto/90b712_32dd8c6d06a74c26ab9221f9b167ef33~mv2.webp)
![[Flutter/dart] Make a notification number badge](https://static.wixstatic.com/media/90b712_32dd8c6d06a74c26ab9221f9b167ef33~mv2.jpg/v1/fill/w_454,h_341,fp_0.50_0.50,q_90,enc_avif,quality_auto/90b712_32dd8c6d06a74c26ab9221f9b167ef33~mv2.webp)
[Flutter/dart] Make a notification number badge
Overview That badge that shows the number of notifications that are often used on many app like LINE. I had to make it with my own app,...
Aug 17, 2021
[Flutter/dart] How to call a method that takes a class instance as an argument in a compute() method
Overview If heavy processing is applied while creating an application with Flutter, the operation of the application will become heavy....
Aug 16, 2021
[Flutter/dart] How to use flutter_isolate
Overview You may want to run heavy processing on a different isolate to make the operation lighter. Basically, you can use the compute()...
Aug 16, 2021
[Flutter/dart] ServicesBinding.defaultBinaryMessenger was accessed before the binding was initialize
Overview Suddenly the above error message appears and the app crashes. As in the error message and the article on the net, adding...
Aug 16, 2021
![[Flutter/dart] How to display an icon on the calendar along with the date](https://static.wixstatic.com/media/90b712_c14aff45a02b4d408ca033a474a18350~mv2.png/v1/fill/w_333,h_250,fp_0.50_0.50,q_35,blur_30,enc_avif,quality_auto/90b712_c14aff45a02b4d408ca033a474a18350~mv2.webp)
![[Flutter/dart] How to display an icon on the calendar along with the date](https://static.wixstatic.com/media/90b712_c14aff45a02b4d408ca033a474a18350~mv2.png/v1/fill/w_454,h_341,fp_0.50_0.50,q_95,enc_avif,quality_auto/90b712_c14aff45a02b4d408ca033a474a18350~mv2.webp)
[Flutter/dart] How to display an icon on the calendar along with the date
Overview When making an app, I think there are many occasions when you use a calendar. Even so, you may want to display the icon image...
Aug 16, 2021
[Flutter/dart] Bold notification title with local_notification
Overview You can easily create notifications using flutter's library called local_notification. This time, I will show you how to make...
Aug 15, 2021
![[Flutter/dart] Display an icon on the notification screen with local_notification](https://static.wixstatic.com/media/90b712_689559a45752482eb23d8925822c9c8b~mv2.jpg/v1/fill/w_333,h_250,fp_0.50_0.50,q_30,blur_30,enc_avif,quality_auto/90b712_689559a45752482eb23d8925822c9c8b~mv2.webp)
![[Flutter/dart] Display an icon on the notification screen with local_notification](https://static.wixstatic.com/media/90b712_689559a45752482eb23d8925822c9c8b~mv2.jpg/v1/fill/w_454,h_341,fp_0.50_0.50,q_90,enc_avif,quality_auto/90b712_689559a45752482eb23d8925822c9c8b~mv2.webp)
[Flutter/dart] Display an icon on the notification screen with local_notification
Overview You can create notifications using a library called local_notification. The official sample only has a title and body, but you...
Aug 15, 2021
[Flutter/dart] Do not reset notifications local_notification when the app is restarted
Overview You can easily create notifications using a library called flutter_local_notificaton. However, if you turn off the app once...
Aug 15, 2021
[Flutter/dart] Set regular monthly notifications with local_notification
Overview A library called flutter_local_notification makes it easy to create regular notifications. However, this library only provides...
Aug 15, 2021
bottom of page