Skip to content

Instantly share code, notes, and snippets.

@prasannajeet
Created September 3, 2018 16:32
Show Gist options
  • Save prasannajeet/083ac98ab7d650121af8794310bbd8a3 to your computer and use it in GitHub Desktop.
Save prasannajeet/083ac98ab7d650121af8794310bbd8a3 to your computer and use it in GitHub Desktop.
<?xml version="1.0" encoding="utf-8"?>
<android.support.constraint.ConstraintLayout xmlns:android="http://schemas.android.com/apk/res/android"
xmlns:app="http://schemas.android.com/apk/res-auto"
xmlns:tools="http://schemas.android.com/tools"
android:id="@+id/frameLayout2"
android:layout_width="match_parent"
android:layout_height="match_parent"
tools:context=".DestinationFragment">
<TextView
android:id="@+id/welcomeWithNameTv"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
tools:text="Hello Andy!"
app:layout_constraintBottom_toBottomOf="parent"
app:layout_constraintEnd_toEndOf="parent"
app:layout_constraintStart_toStartOf="parent"
app:layout_constraintTop_toTopOf="parent" />
</android.support.constraint.ConstraintLayout>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment