আমি চাচ্ছি ইউজার যখন প্রিন্ট বাটনে ক্লিক করবে,
তখন ইউজারের ক্রম বাউজার টি ওপেন হবে এবং ইউজার ক্রোম ব্রাউজার এর মধ্যে দেখতে পারবে পিডিএফ ফাইলটি,
এরপর ইউজার চাইলে ওখান থেকে প্রিন্টার মেশিনের মধ্যে প্রিন্ট করতে পারবে,
কিন্তু আমার এখানে একটি সমস্যা হয়েছে বাংলা ফ্রন্ট শো হয় কিন্তু এলোমেলো দেখাচ্ছে
child: TextFormField(
controller: medicineNamesController,
onChanged: (value) {
setState(() {
medicineNames = value;
});
if (_containsBangla(value)) {
ScaffoldMessenger.of(context).showSnackBar(
SnackBar(
content: Text(
'Please Enter English Characters Only',
style: TextStyle(fontSize: 20, color: Colors.white,),
),
backgroundColor: Colors.red.shade900,
),
);
}
},
maxLines: null,
decoration: InputDecoration(
hintText: "Enter Medicine Name",
hintStyle: TextStyle(color: Colors.black),
),
textInputAction: TextInputAction.newline,
),
New contributor
shop games item is a new contributor to this site. Take care in asking for clarification, commenting, and answering.
Check out our Code of Conduct.