File tree Expand file tree Collapse file tree 3 files changed +9
-7
lines changed Expand file tree Collapse file tree 3 files changed +9
-7
lines changed Original file line number Diff line number Diff line change
1
+ github : [budchirp]
Original file line number Diff line number Diff line change 1
- <h1 align =" center " >calcplusplus</h1 >
2
- <h2 align =" center " >TUI calculator written in C++ using FTXUI</h2 >
1
+ <div align =" center " >
2
+ <h1>calcplusplus</h1>
3
+ <h2>TUI calculator written in C++ using FTXUI</h2>
4
+ </div >
3
5
4
- <p align =" center " >
6
+ <div align =" center " >
5
7
<img alt =" Stargazers " src =" https://img.shields.io/github/stars/budchirp/calcplusplus?style=for-the-badge&colorA=0b1221&colorB=ff8e8e " />
6
8
<img alt =" Last commit " src =" https://img.shields.io/github/last-commit/budchirp/calcplusplus?style=for-the-badge&colorA=0b1221&colorB=BDB0E4 " />
7
9
<img alt =" Issues " src =" https://img.shields.io/github/issues/budchirp/calcplusplus?style=for-the-badge&colorA=0b1221&colorB=FBC19D " />
8
- </p >
9
-
10
+ </div >
10
11
11
12
## 💾 Getting started
12
13
Original file line number Diff line number Diff line change @@ -47,8 +47,8 @@ int main() {
47
47
expressionsInputOptions.multiline = false ;
48
48
Component expressionsInput = Input (&expression, " " , expressionsInputOptions);
49
49
50
- Component quitButton = Button (
51
- " X" , [&] { screen.Exit (); }, ButtonOption::Ascii ());
50
+ Component quitButton =
51
+ Button ( " X" , [&] { screen.Exit (); }, ButtonOption::Ascii ());
52
52
53
53
Component clearButton = Button (" C " , [&] {
54
54
expression = " " ;
You can’t perform that action at this time.
0 commit comments