lib_myfltk 0.1.8

Utility functions based on the FLTK.rs GUI library.
Documentation
1
2
3
4
5
6
7
8
9
10
11
use fltk::app;
use lib_myfltk::input_fltk::*;

fn main() {
    let app = app::App::default(); // Ensure App is initialized if not already

    let newstring = input_char(&app, "Try a dry Enter");

    println!("\n The string entered was: {} \n", newstring);

}