diff --git a/native/chat/composed-message.react.js b/native/chat/composed-message.react.js
--- a/native/chat/composed-message.react.js
+++ b/native/chat/composed-message.react.js
@@ -64,6 +64,7 @@
       ...viewProps
     } = this.props;
     const { id, creator } = item.messageInfo;
+    const { hasBeenEdited } = item;
 
     const { isViewer } = creator;
     const alignStyle = isViewer
@@ -134,14 +135,17 @@
     let inlineEngagement = null;
     if (
       item.threadCreatedFromMessage ||
-      Object.keys(item.reactions).length > 0
+      Object.keys(item.reactions).length > 0 ||
+      hasBeenEdited
     ) {
       const positioning = isViewer ? 'right' : 'left';
+      const label = hasBeenEdited ? 'Edited' : null;
       inlineEngagement = (
         <InlineEngagement
           threadInfo={item.threadCreatedFromMessage}
           reactions={item.reactions}
           positioning={positioning}
+          label={label}
         />
       );
     }