-
Notifications
You must be signed in to change notification settings - Fork 224
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Sample App TextReader #361
base: master
Are you sure you want to change the base?
Sample App TextReader #361
Conversation
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Hello, I have a question about "Verified Version" in README.md. API level 10 is now available in Public with Tizen7.0. I think.. using (Or, mentioning) API Level 11 is not proper.... refer to https://github.com/Samsung/TizenFX
f28ed7c
to
b045f6e
Compare
b045f6e
to
aa101c0
Compare
Hello @sgchoi5 , I had change it thank you. |
@AbedalrahmanRasem
thank you. |
@@ -0,0 +1,443 @@ | |||
/* | |||
* Copyright (c) 2017 Samsung Electronics Co., Ltd. All rights reserved. |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
year needs be changed as 2023
|
||
namespace TextReader_UI.views | ||
{ | ||
class MainPage : ContentPage |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
I have built it locally and tested on TM1 mobile target and it was working fine. (b^_^)b
StartEffect = delegate(int currentParagraph) | ||
{ | ||
for(int i = 0; i < 4; i++){ | ||
if(i == currentParagraph){ |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
could you make this as like this?
if (false == xxx)
{
xxx;
}
you can use auto code editing by "ctrl+k+d" or "ctrl+k+f" in Visual Studio.
could you check the sites below for easy way of editing code?
-
Visual Studio in Windows : https://stackoverflow.com/questions/1435691/visual-studio-format-entire-file
-
VS Code in Ubuntu : https://stackoverflow.com/questions/29973357/how-do-you-format-code-in-visual-studio-code-vscode
TextReader
Text Reader is a sample application which demonstrates how to synthesize voice.
From text using Tizen TTS API.