- r - 以节省内存的方式增长 data.frame
- ruby-on-rails - ruby/ruby on rails 内存泄漏检测
- android - 无法解析导入android.support.v7.app
- UNIX 域套接字与共享内存(映射文件)
我在 flutter 中构建了一个 EMI 计算器,但我的结果显示为例如 1250568.00
但我希望它显示为 N$ 1,250,568.00
我已经尝试了 intl 包,但在 Text(f.format(_tiResults)),
上出现错误,正如解释如何实现它一样。也尝试了 MoneyMask 包无济于事。
import 'package:homenet/pages/home_page.dart';
import 'dart:math';
class MyHomePage extends StatefulWidget {
@override
_MyHomePageState createState() => new _MyHomePageState();
}
class _MyHomePageState extends State<MyHomePage> {
List _durationTypes = ['Month(s)', 'Year(s)'];
String _durationType = "Year(s)";
String _miResult = "";
String _tiResult = "";
String _tcResult = "";
bool _switchValue = true;
final TextEditingController _principalAmount = TextEditingController();
final TextEditingController _interestRate = TextEditingController();
final TextEditingController _loanDuration = TextEditingController();
_onClear(){
setState(() {
_principalAmount.text = "";
_interestRate.text = "";
_loanDuration.text = "";
_miResult = "";
_tiResult = "";
_tcResult = "";
});
}
@override
Widget build(BuildContext context) {
return new Scaffold(
resizeToAvoidBottomPadding: false,
appBar: AppBar(
backgroundColor: new Color(0xFFFA983A),
title: InkWell(
onTap: (){
Navigator.push(context,
MaterialPageRoute(builder: (context) => new HomePage()));},
child: Image.asset(
'assets/images/logo_white.png',
fit: BoxFit.cover,
),
),
elevation: 0.0,
centerTitle: true,
actions: <Widget>[
new IconButton(
icon: new Icon(Icons.cancel, size: 30,),
onPressed: () {
_onClear();
},
),
],
),
body: Center(
child: Container(
margin: EdgeInsets.all(24),
child: Column(
children: <Widget>[
Container(
child: TextField(
cursorColor: Color(0xFFFA983A),
controller: _principalAmount,
decoration:
InputDecoration(
icon: Icon(Icons.monetization_on),
border: OutlineInputBorder(
borderRadius: BorderRadius.circular(25),
gapPadding: 5),
labelText: "Enter Principal Amount"),
keyboardType: TextInputType.numberWithOptions(),
),
),
SizedBox(
height: 12,
),
Container(
child: TextField(
cursorColor: Color(0xFFFA983A),
controller: _interestRate,
decoration:
InputDecoration(
icon: Icon(Icons.show_chart),
border: OutlineInputBorder(
borderRadius: BorderRadius.circular(25),
gapPadding: 5),
labelText: "Interest Rate per Annum %"),
keyboardType: TextInputType.numberWithOptions(),
),
),
SizedBox(
height: 12,
),
Row(
children: <Widget>[
Flexible(
flex: 3,
child: Container(
child: TextField(
cursorColor: Color(0xFFFA983A),
controller: _loanDuration,
decoration: InputDecoration(
icon: Icon(Icons.date_range),
border: OutlineInputBorder(
borderRadius: BorderRadius.circular(25),
gapPadding: 5),
labelText: "Loan Duration"),
keyboardType: TextInputType.numberWithOptions(),
),
),
),
// TODO: ========= SWITCH ================
Flexible(
flex: 1,
child: Column(
children: <Widget>[
Text(
_durationType,
style: TextStyle(
fontWeight: FontWeight.bold,
),
),
Switch(
activeColor: Color(0xFFFA983A),
value: _switchValue,
onChanged: (bool value) {
print(value);
if (value) {
_durationType = _durationTypes[1];
} else {
_durationType = _durationTypes[0];
}
setState(() {
_switchValue = value;
});
}),
],
),
),
],
),
SizedBox(
height: 12,
),
// TODO: ============== Button ============
Flexible(
child: FlatButton(
padding: EdgeInsets.fromLTRB(48, 8, 48, 8),
onPressed: _handleCalculation,
child: Text(
"CALCULATE",
style: TextStyle(color: Colors.white),
),
color: Color(0xFFFA983A),
),
),
SizedBox(
height: 12,
),
// TODO: Results Widget =====================================
monthlyInstalmentsResult(_miResult),
SizedBox(
height: 12,
),
totalInterestResult(_tiResult),
SizedBox(
height: 12,
),
totalCostResult(_tcResult),
SizedBox(
height: 12,
),
Container(
child: Text(
"Disclaimer* This is just an approximate amount"
"and in no way reflect the exact figures, please consult your bank.",
style: TextStyle(
color: Colors.grey,
fontSize: 10,
),
),
),
],
),
),
),
);
}
void _handleCalculation() {
// TODO: Amortization
// TODO: A = Payment amount per period
// TODO: P = Initial Principal (Loan Amount)
// TODO: r = interest Rate
// TODO: n = Total number of payments
double A = 0.0;
double I = 0.0;
double T = 0.0;
double P = double.parse(_principalAmount.text);
double r = double.parse(_interestRate.text) / 12 / 100;
int n = _durationType == "Year(s)"
? int.parse(_loanDuration.text) * 12
: int.parse(_loanDuration.text);
A = (P * r * pow((1 + r), n) / (pow((1 + r), n) - 1));
T = (A * n);
I = (T - P);
_miResult = A.toStringAsFixed(2);
setState(() {});
_tiResult = I.toStringAsFixed(2);
setState(() {});
_tcResult = T.toStringAsFixed(2);
setState(() {});
}
Widget monthlyInstalmentsResult(miResults) {
// var f = new NumberFormat("#,###,###.0#");
// var f = new NumberFormat("###.0#", "en_US");
bool canShow = false;
String _miResults = miResults;
if (_miResults.length > 0) {
canShow = true;
}
return Container(
child: canShow
? Row(
children: <Widget>[
Text(
"Monthly Instalments: ",
style: TextStyle(
color: Colors.grey,
fontSize: 18,
),
),
Text(
"N\$ ",
style: TextStyle(
color: Color(0xFFFA983A),
fontSize: 24,
fontWeight: FontWeight.bold,
),
),
Text(
_miResult,
style: TextStyle(
color: Color(0xFFFA983A),
fontSize: 24,
fontWeight: FontWeight.bold,
),
)
],
)
: Row());
}
Widget totalInterestResult(tiResults) {
bool canShow = false;
String _miResults = tiResults;
if (_miResults.length > 0) {
canShow = true;
}
return Container(
child: canShow
? Row(
children: <Widget>[
Text(
"Total Interest: ",
style: TextStyle(
color: Colors.grey,
fontSize: 18,
),
),
Text(
"N\$ ",
style: TextStyle(
color: Color(0xFFFA983A),
fontSize: 24,
fontWeight: FontWeight.bold,
),
),
Text(
_tiResult,
style: TextStyle(
color: Color(0xFFFA983A),
fontSize: 24,
fontWeight: FontWeight.bold,
),
)
],
)
: Row());
}
Widget totalCostResult(tcResults) {
bool canShow = false;
String _miResults = tcResults;
if (_miResults.length > 0) {
canShow = true;
}
return Container(
child: canShow
? Row(
children: <Widget>[
Text(
"Total Cost: ",
style: TextStyle(
color: Colors.grey,
fontSize: 18,
),
),
Text(
"N\$ ",
style: TextStyle(
color: Color(0xFFFA983A),
fontSize: 24,
fontWeight: FontWeight.bold,
),
),
Text(
_tcResult,
style: TextStyle(
color: Color(0xFFFA983A),
fontSize: 24,
fontWeight: FontWeight.bold,
),
)
],
)
: Row());
}
}
代码可以完全重现,就像我在我的应用程序中一样......我想要结果(miResults
、tiResults
和 tcResults
)以财务/货币格式显示。谢谢。
最佳答案
试试这个:
void _handleCalculation() {
// TODO: Amortization
// TODO: A = Payment amount per period
// TODO: P = Initial Principal (Loan Amount)
// TODO: r = interest Rate
// TODO: n = Total number of payments
double A = 0.0;
double I = 0.0;
double T = 0.0;
double P = double.parse(_principalAmount.text);
double r = double.parse(_interestRate.text) / 12 / 100;
int n = _durationType == "Year(s)"
? int.parse(_loanDuration.text) * 12
: int.parse(_loanDuration.text);
A = (P * r * pow((1 + r), n) / (pow((1 + r), n) - 1));
T = (A * n);
I = (T - P);
NumberFormat format = NumberFormat('#,###,###.00');
setState(() {
_miResult = format.format(A);
_tiResult = format.format(I);
_tcResult = format.format(T);
});
}
关于dart - 如何在 Flutter 的 EMI 计算器中使用分隔符显示货币格式,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/56239519/
我目前正在尝试使用 ParaView Calculator-Filter 将给定的笛卡尔坐标 (x,y,z) 转换为球坐标 (r, theta, phi),其中 theta 是极角,phi 是方位角。
已关闭。这个问题是 not reproducible or was caused by typos 。目前不接受答案。 这个问题是由拼写错误或无法再重现的问题引起的。虽然类似的问题可能是 on-top
我有这个问题,我想显示如果0/0,输出是:“不能将0除以自身”。如何调整我的代码以便可以显示该输出?如果是这样,我应该使用什么代码才能实现我的目标? 下面是我的代码: #include using
我正在尝试创建一个也支持负数的计算器,并最终创建一个 lisp 风格的树。 我像这样定义词法分析器规则: INT :'-'? [0-9]+ ; LBRACKET : '('; RBRACKET :
我正在开发一个基本的 JavaScript 计算器,我也希望能够开始计算负数。现在,如果我在输入数字之前单击“-”,“-”将不会显示,因此我只能从正数开始。有人可以告诉我如何将其包含在我的代码中吗?
按照目前的情况,这个问题不适合我们的问答形式。我们希望答案得到事实、引用或专业知识的支持,但这个问题可能会引发辩论、争论、投票或扩展讨论。如果您觉得这个问题可以改进并可能重新打开,visit the
这是我第一次尝试 Java。该项目是一个计算器,它需要一个数字、一个运算符(operator)信号(+、-、*、/)和另一个数字来创建方程并给出其最终值,然后询问用户是否要重新启动程序另一个方程或不是
所以我写了这个脚本;它有点像我找到并拼凑起来的计算器的大杂烩。 KeyListener 来自 Java - oracle - .com 网站。顺便说一句,我对此非常陌生,不知道我在做什么。 我正在尝试
我正在尝试创建一个也支持负数的计算器,并最终创建一个 lisp 风格的树。 我像这样定义词法分析器规则: INT :'-'? [0-9]+ ; LBRACKET : '('; RBRACKET :
我正在开发一个基本的 JavaScript 计算器,我也希望能够开始计算负数。现在,如果我在输入数字之前单击“-”,“-”将不会显示,因此我只能从正数开始。有人可以告诉我如何将其包含在我的代码中吗?
按照目前的情况,这个问题不适合我们的问答形式。我们希望答案得到事实、引用或专业知识的支持,但这个问题可能会引发辩论、争论、投票或扩展讨论。如果您觉得这个问题可以改进并可能重新打开,visit the
我开始在java中创建一个计算器,我试图循环遍历字符串输入,如果输入中有任何整数,则将它们添加到ArrayList calcOperands中。在 parseInput() 方法中,我使用 charA
我正忙着制作计算器,但不知怎的,整数没有被使用,我不知道为什么。我尝试修复它,但我不知道该怎么做。我使用带有事件的按钮来计算答案,也许有问题。这是我的代码:顺便说一句,我使用 Eclipse
我的主类中有这段代码。我的问题是,GPA 是用总分除以类(class)来计算的。它没有给我完整的号码。 EX,如果总数为 14,类(class)为 4,则为 3.5,我的代码只给我 3.0。有谁知道为
我需要创建一个可以加、减、乘、除、绝对值和舍入的计算器。这是我到目前为止所拥有的 import java.util.Scanner; public class Calculator { pub
我是一名 Java Noob,正在研究 GUI 计算器,但我刚刚来到这里..我已经有了按钮,我需要绑定(bind)这些数字并存储在运算符 ( + - */) 之间的某个位置以显示在我的 JTextAr
这是我的作业。但是,我无法让结果发挥作用。我希望它打印出来为: > 2*7*6 2 * 7 ---- 14 * 6 ---- 84 等等。我希望无论我输入多少个数字,代码都能正常工作
这个问题已经有答案了: What does a "Cannot find symbol" or "Cannot resolve symbol" error mean? (18 个回答) 已关闭 6 年
大家好,感谢您帮助我。 我用 C# 制作了这个计算器,但遇到了一个问题。 当我添加像 5+5+5 这样的东西时,它给了我正确的结果,但是当我想减去两个以上的数字并且还想除或乘以两个以上的数字时,我没有
我一直在开发计算器作为自己的学习项目。它工作正常,只是我无法弄清楚如何阻止人们添加应用程序破坏输入,例如 1++-*/4。我尝试了各种方法,例如将当前显示拆分为一个数组,并将其与具有所有运算符的另一个
我是一名优秀的程序员,十分优秀!