Posts

Showing posts from October, 2020

Developer Tips : Focus on feature and content, not the appearance

Image
I’ve been trying to become a UI designer. I want to develop a well-designed, really good looking system management app, and then I can sell it somewhere on the software marketplace and hope It can make me some revenue from it. So I started searching on what is the best UI library that I will use to develop the project. UI design, library or framework that have the best look and feel for users so the user won’t feel tired or bored while using the app. After analysing many libraries, I realize that even the best design, which in my opinion is Material design, in the end users will feel bored and feel that there’s nothing special with the design. Because appearance is kind of only work as a first impression, after a while using the app, the user won’t care about looks anymore, it is the content or feature that they will care about. Looks are the first impression whether a customer will decide to choose our product or find another product that is better than ours, so looks are

Flutter Button With Left Align Text and Icon

Image
flutter button left text Developing a flutter UI is very difficult for a beginner or I think any other technology it’s very intimidating for a starter. I remember my first time trying to make a button in Flutter that had left aligned text in it. I spent a lot of time on how to make it but never made it. Once you are getting familiar with flutter widget or component blocks, you can apply whatever style you want for your app. In html you can just do something like <button style=”text-align:left”>Text</button> but in flutter it is a bit tricky. So here I provide an example on how you can align text inside a flutter button to the left. Flutter button with left align text import 'package:flutter/material.dart'; void main() { runApp(MyApp()); } class MyApp extends StatelessWidget { @override Widget build(BuildContext context) { return MaterialApp( title: 'Flutter Demo', theme: ThemeData( primarySwatch: Colors.blue, visualDe

How To Create Flutter Card With Example Code

Image
This is a collection of Cards written in Flutter. A card is a sheet of Material used to represent some related information, for example an album, a geographical location, a meal, contact details, etc. Here are some cards that you can use for reference if you are just getting started in flutter but you don't know how to create a flutter card. Just copy paste the code and modify based on your need. 1. A simple flutter card example import 'dart:async'; import 'package:flutter/material.dart'; void main() { runApp(MyApp()); } class MyApp extends StatelessWidget { @override Widget build(BuildContext context) { return MaterialApp( title: 'Flutter Demo', theme: ThemeData( primarySwatch: Colors.blue, visualDensity: VisualDensity.adaptivePlatformDensity, ), home: MyHomePage(title: 'Flutter Demo Home Page'), ); } } class MyHomePage extends StatefulWidget { MyHomePage({Key key, this.title}) :

Basic Knowledge of Oral Cavity, Identifying and Avoiding Oral Diseases

Image
Whenever I drink sugary drinks for some reason my mouth feels sour and I hate this sensation, there must be something wrong with my mouth. I am not taking my oral health seriously, so it’s not surprising for me to have very bad teeth and my mouth is gross. Only lately I've been very aware about how important it is to keep my oral health. Now I never miss a single day without bruising my teeth at least twice a day, floss my teeth, and rinse using mouthwash. I read a lot of stuff about oral hygiene, human teeth anatomy, bacteria inside our mouth, acids, and many other related articles in this subject. It’s not important for my profession right now, but maybe I need it in the future. Knowledge is always useful maybe not for today but later on. The study of oral cavity especially for human oral cavity is called Dentistry, also known as dental medicine and oral medicine. It is concerned with the prevention and treatment of oral disease, including diseases of the teeth and supporti

Free Download Motivational Google Slide Presentation

Image
If you are in a hurry to make a slide presentation for your meeting or you are about to give a motivational seminar. But maybe you are very busy and then forgot to create a presentation slide, so there's no time left to create it yourself because the meeting is just 5 or 10 minutes to start. Or whatever your reason is. Here in this blog, you can download the motivational slide. It's very simple and you can just explain it easily in your meeting. Download The Slide Free Motivational Slide Presentation Download Here This is The preview content of what is in this slide. We need to have a good preparation before the meeting. If you are very good at one subject, usually just by giving a very simple clue or phrase in a slide later on you can develop the very complex explanatory using your speaking skill. There’s one very funny TED talk titled How to sound smart in your TEDx Talk by Will Stephen. This very funny talk explain to us that usually a meeting, talk, or seminar is meaningles

Popular posts from this blog

ERROR 1348 Column Password Is Not Updatable When Updating MySQL Root Password

How To Create Spring Boot Project Using Netbeans

How To Connect SSH Using PEM Certificate On Windows

How To Use React Ckeditor Upload File Image With Demo and Example Codes

Spring Kafka - how to use ReplyingKafkaTemplate send and reply synchronously