mirror of
				https://github.com/ArthurSonzogni/FTXUI.git
				synced 2025-10-31 18:48:11 +08:00 
			
		
		
		
	
		
			
				
	
	
		
			39 lines
		
	
	
		
			1.1 KiB
		
	
	
	
		
			C++
		
	
	
	
	
	
			
		
		
	
	
			39 lines
		
	
	
		
			1.1 KiB
		
	
	
	
		
			C++
		
	
	
	
	
	
| // Copyright 2020 Arthur Sonzogni. All rights reserved.
 | |
| // Use of this source code is governed by the MIT license that can be found in
 | |
| // the LICENSE file.
 | |
| #include <stdlib.h>                // for EXIT_SUCCESS
 | |
| #include <ftxui/dom/elements.hpp>  // for text, operator|, vbox, border, Element, Fit, hbox
 | |
| #include <ftxui/screen/screen.hpp>  // for Full, Screen
 | |
| #include <memory>                   // for allocator
 | |
| 
 | |
| #include "ftxui/dom/node.hpp"      // for Render
 | |
| #include "ftxui/screen/color.hpp"  // for ftxui
 | |
| 
 | |
| int main() {
 | |
|   using namespace ftxui;
 | |
|   auto document =  //
 | |
|       hbox({
 | |
|           vbox({
 | |
|               text("Line 1"),
 | |
|               text("Line 2"),
 | |
|               text("Line 3"),
 | |
|           }) | border,
 | |
| 
 | |
|           vbox({
 | |
|               text("Line 4"),
 | |
|               text("Line 5"),
 | |
|               text("Line 6"),
 | |
|           }) | border,
 | |
| 
 | |
|           vbox({
 | |
|               text("Line 7"),
 | |
|               text("Line 8"),
 | |
|               text("Line 9"),
 | |
|           }) | border,
 | |
|       });
 | |
|   auto screen = Screen::Create(Dimension::Full(), Dimension::Fit(document));
 | |
|   Render(screen, document);
 | |
|   screen.Print();
 | |
|   return EXIT_SUCCESS;
 | |
| }
 | 
