~mterry/ubuntu-calculator-app/confined

« back to all changes in this revision

Viewing changes to app/ui/Screen.qml

  • Committer: Bartosz Kosiorek
  • Date: 2014-11-28 00:01:50 UTC
  • Revision ID: gang65@poczta.onet.pl-20141128000150-333mfsdnbxxug5u5
Create formula to display and engine formula, add formula validation, improve the history display, add localization of decimal point 

Show diffs side-by-side

added added

removed removed

Lines of Context:
23
23
 
24
24
ListItem.Standard {
25
25
    id: root
26
 
 
27
 
    Text {
28
 
        text: result;
 
26
    Row {
 
27
        id: row
 
28
        Text {
 
29
            text: formulaToDisplay;
 
30
        }
 
31
        Text {
 
32
            text: "=";
 
33
        }
 
34
        Text {
 
35
            text: result;
 
36
            font.bold: true
 
37
        }
29
38
    }
30
39
}