Commit 987da09a authored by Izol's avatar Izol

added color in phone validation wording

parent bd72a8bb
......@@ -1187,15 +1187,39 @@ class _HomePageState extends State<HomePage> implements AlertDialogCallback {
),
),
SizedBox(
height: 100,
height: 95,
),
Text(
"Masukkan 4 angka terakhir nomor handphone anda !",
Text.rich(
TextSpan(
children: [
TextSpan(
text: "Masukkan 4 angka terakhir",
style: blackTextStyle.copyWith(
fontSize: 40,
fontWeight: FontWeight.bold,
),
textAlign: TextAlign.center,
),
TextSpan(
text: " nomor handphone ",
style: blackTextStyle.copyWith(
fontSize: 40,
fontWeight: FontWeight.bold,
color: Colors.blue,
),
),
TextSpan(
text: "anda !",
style: blackTextStyle.copyWith(
fontSize: 40,
fontWeight: FontWeight.bold,
),
),
],
),
),
SizedBox(
height: 10,
),
Text(
"Enter the last 4 digits of your phone number !",
......@@ -1207,7 +1231,7 @@ class _HomePageState extends State<HomePage> implements AlertDialogCallback {
textAlign: TextAlign.center,
),
SizedBox(
height: 28,
height: 25,
),
Container(
padding: EdgeInsets.all(28),
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment