@ -19,6 +19,7 @@ import androidx.compose.ui.Alignment
import androidx.compose.ui.Modifier
import androidx.compose.ui.graphics.Color
import androidx.compose.ui.platform.ComposeView
import androidx.compose.ui.res.stringResource
import androidx.compose.ui.text.style.TextAlign
import androidx.compose.ui.tooling.preview.Preview
import androidx.compose.ui.unit.dp
@ -47,8 +48,6 @@ class LandingActivity : BaseActionBarActivity() {
// Session then close this activity to resume the last activity from the previous instance.
if ( !is TaskRoot ) { finish ( ) ; return }
val binding = ActivityLandingBinding . inflate ( layoutInflater )
setContentView ( binding . root )
setUpActionBarSessionLogo ( true )
ComposeView ( this )
@ -67,27 +66,27 @@ class LandingActivity : BaseActionBarActivity() {
AppTheme {
Column ( modifier = Modifier . padding ( horizontal = 36. dp ) ) {
Spacer ( modifier = Modifier . weight ( 1f ) )
Text ( " Privacy in your pocket. " , modifier = Modifier . align ( Alignment . CenterHorizontally ) , style = MaterialTheme . typography . h4 , textAlign = TextAlign . Center )
Text ( stringResource ( R . string . onboarding _privacy _in _your _pocket ) , modifier = Modifier . align ( Alignment . CenterHorizontally ) , style = MaterialTheme . typography . h4 , textAlign = TextAlign . Center )
Spacer ( modifier = Modifier . height ( 24. dp ) )
IncomingText ( " Welcome to Session \uD83D \uDC4B " )
IncomingText ( stringResource ( R . string . onboarding _welcome _to _session ) )
Spacer ( modifier = Modifier . height ( 14. dp ) )
OutgoingText ( " Session is engineered \n to protect your privacy. " )
OutgoingText ( stringResource ( R . string . onboarding _session _is _engineered _to _protect _your _privacy ) )
Spacer ( modifier = Modifier . height ( 14. dp ) )
IncomingText ( " You don’ t even need a phone number to sign up. " )
IncomingText ( stringResource ( R . string . onboarding _you _don _t _even _need _a _phone _number _to _sign _up ) )
Spacer ( modifier = Modifier . height ( 14. dp ) )
OutgoingText ( " Creating an account is \n instant, free, and \n anonymous \uD83D \uDC47 " )
OutgoingText ( stringResource ( R . string . onboarding _creating _an _account _is _instant _free _and _anonymous ) )
Spacer ( modifier = Modifier . weight ( 1f ) )
OutlineButton ( text = " Create account " , modifier = Modifier
OutlineButton ( text = stringResource ( R . string . onboarding _create _account ) , modifier = Modifier
. width ( 262. dp )
. align ( Alignment . CenterHorizontally ) ) { startPickDisplayNameActivity ( ) }
Spacer ( modifier = Modifier . height ( 14. dp ) )
FilledButton ( text = " I have an account " , modifier = Modifier
FilledButton ( text = stringResource ( R . string . onboarding _i _have _an _account ) , modifier = Modifier
. width ( 262. dp )
. align ( Alignment . CenterHorizontally ) ) { startLinkDeviceActivity ( ) }
Spacer ( modifier = Modifier . height ( 8. dp ) )
BorderlessButton (
text = " By using this service, you agree to our Terms of Service and Privacy Policy " ,
text = stringResource ( R . string . onboarding _by _using _this _service _you _agree _to _our _terms _of _service _and _privacy _policy ) ,
modifier = Modifier
. width ( 262. dp )
. align ( Alignment . CenterHorizontally ) ,