16.2%
38.4%
2.2%
37.8%
-11.6%
37.5%
97.4%
9.3%
-11.4%
100%
14.1%
100%
100%
33%
14.2%
-48.2%
-46.7%
-11.6%
-82.9%
-84.4%
return Container(
margin: const EdgeInsets.symmetric(
horizontal: 12.0,
vertical: 4.0,
),
decoration: BoxDecoration(
border: Border.all(color: Colors.amber),
borderRadius: BorderRadius.circular(12.0),
),
child: ListTile(
contentPadding: const EdgeInsets.symmetric(
horizontal: 5.0, vertical: 5),
horizontalTitleGap:
20.0, // The horizontal gap between the titles and the leading/trailing widgets.
title: Text('${value[index]}',
style: const TextStyle(
fontFamily: 'Phetsarath_ot')),
leading: Container(
width: 80.0,
height: 100.0,
decoration: BoxDecoration(
borderRadius: const BorderRadius.all(
Radius.circular(8.0)),
image: DecorationImage(
fit: BoxFit.cover,
image: AssetImage(imageList[0])),
),
)
));
}
);
},
),
),`
`
final List<String> imageList = [
"assets/images/calendar/buddha-big.jpg",
"assets/images/calendar/buddha-small.jpg",
"assets/images/calendar/buddha-big.jpg",
"assets/images/calendar/buddha-small.jpg",
"assets/images/calendar/buddha-big.jpg",
"assets/images/calendar/buddha-small.jpg",
"assets/images/calendar/makhabousa.jpg",
"assets/images/calendar/seekodtabong.jpg",
"assets/images/calendar/watpou.jpg",
"assets/images/calendar/buddha-small.jpg",
"assets/images/calendar/buddha-big.jpg",
"assets/images/calendar/buddha-small.jpg",
"assets/images/calendar/buddha-big.jpg",
];
final kEvents = LinkedHashMap<DateTime, List<Event>>(
equals: isSameDay,
hashCode: getHashCode,
)..addAll(_kEventSource);
final _kEventSource = {
DateTime.utc(2022, 01, 02): [const Event('ແຮມ 14 ຄ່ຳ ເດືອນ 1')],
DateTime.utc(2022, 01, 10): [const Event('ຂື້ນ 8 ຄ່ຳ ເດືອນ 2')],
DateTime.utc(2022, 01, 17): [const Event('ຂື້ນ 15 ຄ່ຳ ເດືອນ 2')],
DateTime.utc(2022, 01, 25): [const Event('ແຮມ 8 ຄ່ຳ ເດືອນ 2')],
DateTime.utc(2022, 02, 01): [const Event('ແຮມ 15 ຄ່ຳ ເດືອນ 2')],
DateTime.utc(2022, 02, 09): [const Event('ຂື້ນ 8 ຄ່ຳ ເດືອນ 3')],
DateTime.utc(2022, 02, 16): eventlist1602,
DateTime.utc(2022, 02, 24): [const Event('ແຮມ 8 ຄ່ຳ ເດືອນ 3')],
`
hi guys, i have a question about user data collection
i recently got a new assignment from my Intern Team Management to checkout Face ID/Recognition or Biometric Authentication. But he require the project to save and send those facial, image data to the backend.
So my question is: Does Google/Apple allow dev to collect and store user face, fingerprint data to send to the backend server?
// What is the best way to declare a BaseReponse<T> model that i can parse json?
// Like:
class BaseResponse<T> {
final int code = 0;
final String message = '';
final T? data;
}
BaseResponse<TestModel> response = await network()
BaseResponse<List<TestModel>> response = await network()
good morning. Anyone have any thought son weird build runner issues? [SEVERE] json_serializable:json_serializable on test/widgets/blahblahtest.dart:
Invalid argument(s): Missing library: blahblah_nontest.dart - even though it does exist, has no issues, compiles, and is NOT references in blahblahtest.dart :(
<!-- Put your application class name below -->
<application
android:name="App">
</application>
Hello
I'm integrating mastercard payment gateway sdk in my project, this is the link
https://github.com/Mastercard-Gateway/gateway-android-sdk/wiki/3d-secure-authentication
I want to display 3-D Secure authentication screen but when the app launches it crash and the error it is displaying "java.lang.IllegalStateException: You need to use a Theme.AppCompat theme (or descendant) with this activity". I checked in stackoverflow but unfortunately no success.