diff --git a/jni/Main.cpp b/jni/Main.cpp index c0bb776..2a9c385 100644 --- a/jni/Main.cpp +++ b/jni/Main.cpp @@ -32,6 +32,7 @@ #include #include #include +#include #include #include @@ -54,6 +55,14 @@ class Plop :public ewol::Windows ewol::Button * myButton = new ewol::Button("LB"); mySizerVert->SubWidgetAdd(myButton); + + ewol::Entry * myEntry = new ewol::Entry("basic Text"); + myEntry->SetExpendY(true); + myEntry->SetFillY(true); + myEntry->SetExpendX(true); + myEntry->SetFillX(true); + mySizerVert->SubWidgetAdd(myEntry); + ewol::Label * myLabel = new ewol::Label("Mon Mabel"); myLabel->SetExpendY(true); myLabel->SetFillY(true);